source: josm/trunk/scripts/optimize-images@ 14071

Last change on this file since 14071 was 13283, checked in by stoecker, 6 years ago

move another script to scripts directory

  • Property svn:executable set to *
File size: 116 bytes
Line 
1#!/bin/sh
2
3for x in $(find images/ -name "*.png"); do
4 echo "Processing ${x}"
5 optipng -o7 -quiet "${x}"
6done
Note: See TracBrowser for help on using the repository browser.