Created
October 17, 2020 22:33
-
-
Save roalcantara/40a587dc02ac93ba1fdd8bec11584b55 to your computer and use it in GitHub Desktop.
[Bash] Rename all files
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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