Skip to content

Instantly share code, notes, and snippets.

@mallamanis
Created June 7, 2011 21:25
Show Gist options
  • Save mallamanis/1013207 to your computer and use it in GitHub Desktop.
Save mallamanis/1013207 to your computer and use it in GitHub Desktop.
Resize All Pictures
#!/bin/bash
for doc in ./*.JPG; do
convert $doc -resize 50% $doc;
echo "Done with" $doc;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment