Skip to content

Instantly share code, notes, and snippets.

@spyesx
Created February 4, 2020 04:22
Show Gist options
  • Save spyesx/73e780aa1f9b587adfb1bd86beff130d to your computer and use it in GitHub Desktop.
Save spyesx/73e780aa1f9b587adfb1bd86beff130d to your computer and use it in GitHub Desktop.
Clean up and lowercase filenames
# https://explainshell.com/explain?cmd=detox+-s+iso8859_1+-r+-v+.%2F*
detox -s iso8859_1 -r -v ./*
# Lowecase filenames
# linux
rename 'y/A-Z/a-z/' *
# macOS needs to be forced
rename -f 'y/A-Z/a-z/' *
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment