Changeset - 6b3b0e73eaf7
[Not reviewed]
default
0 0 1
Dennis Fink - 6 years ago 2018-05-01 13:18:38
dennis.fink@c3l.lu
Added opting script
1 file changed with 5 insertions and 0 deletions:
0 comments (0 inline, 0 general)
optipng.sh
Show inline comments
 
new file 100755
 
#!/bin/bash
 

	
 
for i in $(find ./ -type f -name "*.png"); do
 
    optipng -o7 "$i"
 
done
0 comments (0 inline, 0 general)