Skip to content

Instantly share code, notes, and snippets.

@reizist
Last active June 5, 2019 18:55
Show Gist options
  • Save reizist/7c3d3c7a2abaf5e921186ddb109b2d2a to your computer and use it in GitHub Desktop.
Save reizist/7c3d3c7a2abaf5e921186ddb109b2d2a to your computer and use it in GitHub Desktop.
zip & unzip
for d in ./*/; do ( cd "$d" && mogrify -resize 'x1200>' *.jpg ) done
for f in *.zip; do unzip -d "${f%*.zip}" "$f"; done
find . \! -name '*.zip' \! -name '.' -type d -exec zip -r {}.zip {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment