Skip to content

Instantly share code, notes, and snippets.

@biera
Created December 3, 2014 17:30
Show Gist options
  • Save biera/4adf61ec7e8c2462bb5a to your computer and use it in GitHub Desktop.
Save biera/4adf61ec7e8c2462bb5a to your computer and use it in GitHub Desktop.
batch image resizing with convert
mkdir resized
for file in *
do
[ -f $file ] && convert -resize 50% $file resized/$file
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment