Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

find . -name "A-Z" | cut -c 3- - | awk '{print $1,tolower($1)}' | xargs -i echo "mv {}" | csh

This will find everything with uppercase letters and rename it to the
same thing with all lowercase.

...