Skip to content

Instantly share code, notes, and snippets.

@chrzyki
Created December 16, 2014 07:41
Show Gist options
  • Save chrzyki/3a43b328122918020bd4 to your computer and use it in GitHub Desktop.
Save chrzyki/3a43b328122918020bd4 to your computer and use it in GitHub Desktop.
Strip PNGs in PATH of all profiles, comments, etc. See: http://tex.stackexchange.com/a/125746
for i in $(find PATH -type f -name "*.png")
do
convert $i -strip $i
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment