Recusively rename files and folders via bash
Can't get rename variants too work reliably. Just using this for now....
find . -name '*A-Z*' -type f -exec bash -c 'echo {} | mv {} $(tr A-Z a-z)' \;
Jeff Smith
Can't get rename variants too work reliably. Just using this for now....
find . -name '*A-Z*' -type f -exec bash -c 'echo {} | mv {} $(tr A-Z a-z)' \;