Skip to content

Instantly share code, notes, and snippets.

@rgo
Created March 9, 2009 16:16
Show Gist options
  • Save rgo/76361 to your computer and use it in GitHub Desktop.
Save rgo/76361 to your computer and use it in GitHub Desktop.
Rename multiples files with a regex.
# 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