Created
March 9, 2009 16:16
-
-
Save rgo/76361 to your computer and use it in GitHub Desktop.
Rename multiples files with a regex.
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 multiples files with a regex. | |
# If filename are "*bazbar.txt" rename them to "*foobar.txt" | |
for f in *;do mv "$f" "${f/baz/foo}";done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment