projects
/
naja.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Hack hack hack hack
[naja.git]
/
screenshots
/
optimize.sh
1
#!/bin/sh
2
3
find . -name '*.png' | while read fn; do
4
optipng -o4 -preserve "$fn"
5
advpng -z4 "$fn"
6
done