Created
June 12, 2016 16:53
-
-
Save nbarthelemy/960793f6aa6cd1bfabbc98bb1a1d4fa2 to your computer and use it in GitHub Desktop.
This file contains 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
# rename alot of files with regular expression | |
for f in *.<ext>; do mv -n "$f" "${f/<replace this>/<with this>}"; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment