Skip to content

Instantly share code, notes, and snippets.

@CarpeNecopinum
Created November 8, 2017 22:13
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 CarpeNecopinum/673367638608a99a58c0f72ce68075b4 to your computer and use it in GitHub Desktop.
Save CarpeNecopinum/673367638608a99a58c0f72ce68075b4 to your computer and use it in GitHub Desktop.
Resizing a folder of photos with imagick in bash
#!/bin/bash
mkdir small
for img in *.jpg
do
convert $img -quality 80 -resize 1920x1080 small/$img
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment