Here is my little one-liner, because I used it today and I find it fun:
for f in `find .` ; do mv $f `echo $f | tr '[A-Z]' '[a-z]'` ; done
Here is my little one-liner, because I used it today and I find it fun:
for f in `find .` ; do mv $f `echo $f | tr '[A-Z]' '[a-z]'` ; done
Frédéric FAURE said
Interesting command line.
This works for OSX which is not case sensitive, but to use this in *NIX, something like “find . | tac” must be needed to begin modifying the bottom of the arbo.
++
Fred