Files
itgmania212121/Utils/pngcrushinplace.bat
2013-06-10 15:38:43 -04:00

8 lines
132 B
Batchfile

@echo off
SET file=%1
SET tempfile=%file%.TEMP
echo %file%
pngcrush -q %file% %tempfile%
del %file%
rename %tempfile% %file%