Here is list of my personnel how to, it's mostly for me to help me remember how I at some point figure out how to do something...
PS: if you like to contribute to my How To blog, let me know and I will give you access to do so.
Friday, March 16, 2007
How to Batch Uppercase/lowercase file/directory
## under tcsh shell
# make the directory lowercase... foreach f ( `find . -type d -print ` ) mv $f `echo $f | tr A-Z a-z` end
# make the file lowercase... foreach f ( `find . -type f -print ` ) mv $f `echo $f | tr A-Z a-z` end
No comments:
Post a Comment