8 lines
132 B
Batchfile
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%
|