Skip to content

Instantly share code, notes, and snippets.

@SevereCloud
Created October 25, 2017 18:31
Show Gist options
  • Save SevereCloud/fc8bb3625df1dc0a42345466a87270e5 to your computer and use it in GitHub Desktop.
Save SevereCloud/fc8bb3625df1dc0a42345466a87270e5 to your computer and use it in GitHub Desktop.
Оптимизация изображений
#!/bin/bash
for f in $(find . -type f -name "*.png");do optipng $f;done
for f in $(find . -type f -name "*.jp*g");do jpegoptim -m70 $f --strip-all;done
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment