Skip to content

Instantly share code, notes, and snippets.

@roalcantara
Created October 17, 2020 22:33
Show Gist options
  • Save roalcantara/40a587dc02ac93ba1fdd8bec11584b55 to your computer and use it in GitHub Desktop.
Save roalcantara/40a587dc02ac93ba1fdd8bec11584b55 to your computer and use it in GitHub Desktop.
[Bash] Rename all files
brew install rename
rename -n -cs icon_ folder_ *
# -n (dry-run)
# -c (lower-case)
# -s (subst [from to])
# http://plasmasturm.org/code/rename/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment