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.
No related posts.
Tags: 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.
No related posts.
Tags: Bash
Leave a Reply