Skip to content

Instantly share code, notes, and snippets.

@diegodorado
Created April 28, 2021 12:01
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 diegodorado/d7cdace648301bd0822cfa93239bb224 to your computer and use it in GitHub Desktop.
Save diegodorado/d7cdace648301bd0822cfa93239bb224 to your computer and use it in GitHub Desktop.
Convert jpg images optimized for web
for f in IMG*; do convert $f -sampling-factor 4:2:0 -strip -quality 85 -interlace JPEG -colorspace RGB "s-$f";done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment