답변:
한 줄에 모두 :
for file in *.png; do pngcrush "$file" "${file%.png}-crushed.png" && mv "${file%.png}-crushed.png" "$file"; done
해야합니다.
(지금까지는 자체 테스트에서 테스트 한 png의 절반 미만 pngcrush
이 더 작아서 색상이 영향을받지 않았습니다.)
버전 1.7.22부터 pngcrush
덮어 쓰기 옵션이 있습니다.
시험
pngcrush -ow file.png
자세한 내용은 변경 로그 를 참조하십시오.
Version 1.7.22 (built with libpng-1.5.6 and zlib-1.2.5)
Added "-ow" (overwrite) option. The input file is overwritten and the
output file is just used temporarily and removed after it is copied
over the input file.. If you do not specify an output file, "pngout.png"
is used as the temporary file. Caution: the temporary file must be on
the same filesystem as the input file. Contributed by a group of students
of the University of Paris who were taking the "Understanding of Programs"
course and wished to gain familiarity with an open-source program.