Skip to content

Instantly share code, notes, and snippets.

@BhanukaUOM
Created August 5, 2020 06:19
Show Gist options
  • Save BhanukaUOM/bef648c4200d5287bb1586717b3c62c5 to your computer and use it in GitHub Desktop.
Save BhanukaUOM/bef648c4200d5287bb1586717b3c62c5 to your computer and use it in GitHub Desktop.
Compress Images Recursively Ubuntu
find . -name '*.jpg' -type f -exec bash -c 'convert -quality 50 "$0" "$0"' {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment