Skip to content

Instantly share code, notes, and snippets.

@nbarthelemy
Created June 12, 2016 16:53
Show Gist options
  • Save nbarthelemy/960793f6aa6cd1bfabbc98bb1a1d4fa2 to your computer and use it in GitHub Desktop.
Save nbarthelemy/960793f6aa6cd1bfabbc98bb1a1d4fa2 to your computer and use it in GitHub Desktop.
# 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