mirror of
https://github.com/LBRYFoundation/pool.git
synced 2025-09-21 02:19:47 +00:00
7 lines
149 B
Bash
Executable file
7 lines
149 B
Bash
Executable file
#!/bin/sh
|
|
find $1 -name "*.png" | while read png
|
|
do
|
|
echo "crushing $png"
|
|
pngcrush -brute "$png" /tmp/temp.png
|
|
mv -f /tmp/temp.png "$png"
|
|
done;
|