6 lines
59 B
Bash
6 lines
59 B
Bash
|
|
#!/bin/sh
|
||
|
|
pngcrush "$1" "$1.new"
|
||
|
|
rm "$1"
|
||
|
|
mv "$1.new" "$1"
|
||
|
|
|