Lower case a string in bash
Sep 5, 2009 Programming
How do I lower case a string in bash?
/bin/mv $file $(echo $file | tr '[A-Z]' '[a-z]']) |
Where $file is the file name we want lower cased.
Tags: Bash
Bash endless loop
Sep 5, 2009 Programming
How can I execute something to run forever, like an endless loop in bash?
while [ 1 = 1 ] do echo "Print this string forever: bash endless loop"; done |
Tags: Bash