Skip to content

Instantly share code, notes, and snippets.

@brandondurham
Created September 20, 2023 17:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brandondurham/635ce3f932682517e252ee8880d190f5 to your computer and use it in GitHub Desktop.
Save brandondurham/635ce3f932682517e252ee8880d190f5 to your computer and use it in GitHub Desktop.
Lowercase all filenames in a directory.
for f in *; do mv "$f" "$f.tmp"; mv "$f.tmp" "`echo $f | tr "[:upper:]" "[:lower:]"`"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment