Files
itgmania212121/Utils/pngcrushinplace.bat
T

8 lines
132 B
Batchfile
Raw Normal View History

2010-01-26 21:00:30 -06:00
@echo off
SET file=%1
SET tempfile=%file%.TEMP
echo %file%
pngcrush -q %file% %tempfile%
del %file%
rename %tempfile% %file%