File: optimize-images

package info (click to toggle)
josm 0.0.svn14760%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 187,192 kB
  • sloc: java: 317,260; xml: 197,001; perl: 10,125; jsp: 250; sh: 112; makefile: 94; python: 29
file content (6 lines) | stat: -rwxr-xr-x 116 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
#!/bin/sh

for x in $(find images/ -name "*.png"); do
    echo "Processing ${x}"
    optipng -o7 -quiet "${x}"
done