Jon Simpson
Convert filenames to lowercase (Bash one-liner)
One-liner to lowercase the filenames of all files in the current directory:
for f in *; do mv $f `echo $f | tr '[:upper:]' '[:lower:]'`; done
One-liner to lowercase the filenames of all files in the current directory:
for f in *; do mv $f `echo $f | tr '[:upper:]' '[:lower:]'`; done