Keep uptodate with the latest hints'n' tips as they are published by signing up to our mailing list.
Convert the given argument into an all lower case string.
toLower() {
echo $1 | tr "[:upper:]" "[:lower:]"
} Convert the given argument into an all lower case string.
toUpper() {
echo $1 | tr "[:lower:]" "[:upper:]"
} tags: linux command line
links: digg this del.icio.us technorati
