Files
itgmania212121/Utils/pngcrushinplace.bat
T
2010-01-26 21:00:30 -06: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%