Skip to content

Instantly share code, notes, and snippets.

@cauli
Created May 12, 2015 19:44
Show Gist options
  • Save cauli/ba8f233ecf791ca5163b to your computer and use it in GitHub Desktop.
Save cauli/ba8f233ecf791ca5163b to your computer and use it in GitHub Desktop.
Bash script to rename all images inside a folder to @3x. (Appending string to file names)
find . -iname "*.png" -exec bash -c 'mv "$0" "${0%\.png}@3x.png"' {} \;
find . -iname "*.jpg" -exec bash -c 'mv "$0" "${0%\.jpg}@3x.jpg"' {} \;
find . -iname "*.gif" -exec bash -c 'mv "$0" "${0%\.gif}@3x.gif"' {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment