File: optimize-images

package info (click to toggle)
josm 0.0.svn18646%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 216,968 kB
  • sloc: java: 389,442; xml: 199,920; perl: 10,155; jsp: 265; sh: 182; makefile: 114; javascript: 74; python: 29
file content (5 lines) | stat: -rwxr-xr-x 119 bytes parent folder | download | duplicates (5)
1
2
3
4
5
#!/bin/sh

find resources/images/ -name "*.png" \
  -exec echo "Processing {}" \; \
  -exec optipng -o7 -quiet "{}" \;