File: optimize-images

package info (click to toggle)
josm 0.0.svn11427%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 113,396 kB
  • ctags: 39,235
  • sloc: java: 261,148; xml: 113,421; perl: 9,724; jsp: 250; sh: 102; makefile: 93
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