Skip to content

Instantly share code, notes, and snippets.

@kvzhuang
Created January 25, 2017 02:18
Show Gist options
  • Save kvzhuang/c6c1968de2bbf445330dcf7edca41ac7 to your computer and use it in GitHub Desktop.
Save kvzhuang/c6c1968de2bbf445330dcf7edca41ac7 to your computer and use it in GitHub Desktop.
#!/bin/bash
#sudo apt-get install jpegoptim optipng
find . -type f -name "*.jpg" -exec jpegoptim -m80 {} \;
find . -type f -name "*.png" -exec optipng {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment