Skip to content

Instantly share code, notes, and snippets.

@vaskaloidis
Last active December 3, 2019 22:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vaskaloidis/3be7aa855bdf7cffe346bea1acf88939 to your computer and use it in GitHub Desktop.
Save vaskaloidis/3be7aa855bdf7cffe346bea1acf88939 to your computer and use it in GitHub Desktop.
#!/bin/sh
for file in *_h.png
do
mv "$file" "${file}/_h.png/_half.png"
done
@vaskaloidis
Copy link
Author

for file in *.png; do mv "$file" "${file/_h.png/_half.png}"; done

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment