Saturday, December 30, 2017

all lower case file names


if you need to convert every file to lower case in a folder in OS X this command will do that.


for f in *; do mv "$f" "`echo $f | tr "[:upper:]" "[:lower:]"`"; done

No comments:

Post a Comment