Skip to content

Instantly share code, notes, and snippets.

@joshvermaire
Created October 9, 2012 05:27
Show Gist options
  • Save joshvermaire/3856784 to your computer and use it in GitHub Desktop.
Save joshvermaire/3856784 to your computer and use it in GitHub Desktop.
Remove " 2" from filenames
for f in IMG_$***\ 2.*; do
mv "$f" "${f/\ 2/}"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment