Skip to content

Instantly share code, notes, and snippets.

@sas1ni69
Created March 16, 2016 07:44
Show Gist options
  • Save sas1ni69/fe292b5f00860a22319f to your computer and use it in GitHub Desktop.
Save sas1ni69/fe292b5f00860a22319f to your computer and use it in GitHub Desktop.
Resize all images in dir
for p in *;do
(cd $p && sips -Z 600 *.jpg)
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment