Skip to content

Instantly share code, notes, and snippets.

@Aayush9029
Created May 11, 2022 03:40
Show Gist options
  • Select an option

  • Save Aayush9029/416ff19597422e611c26df0326b37e38 to your computer and use it in GitHub Desktop.

Select an option

Save Aayush9029/416ff19597422e611c26df0326b37e38 to your computer and use it in GitHub Desktop.
Image Compression Batch
# compress png images recursively in a dir/**
find . -name '*.png' -print0 | xargs -0 -P8 -L8 pngquant --ext .png --force 256
# L "8" is images compressed at once
# P "8" is cpu cores used at once
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment