Skip to content

Instantly share code, notes, and snippets.

@Walkeryr
Created October 2, 2013 08:36
Show Gist options
  • Save Walkeryr/6790733 to your computer and use it in GitHub Desktop.
Save Walkeryr/6790733 to your computer and use it in GitHub Desktop.
Resize and move images with Imagemagick with convert command
for name in `ls *.jpg`
do
convert -resize 930x $name ../Images-small/$name
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment