Skip to content

Instantly share code, notes, and snippets.

@coskuntekin
Created April 23, 2023 03:03
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 coskuntekin/cc49edd75728fafbd214fbefb7c38a26 to your computer and use it in GitHub Desktop.
Save coskuntekin/cc49edd75728fafbd214fbefb7c38a26 to your computer and use it in GitHub Desktop.
Compress JPG files in the folder
for file in *; do
convert -strip -interlace Plane -gaussian-blur 0.05 -quality 60% "$file" "$file"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment