瀏覽代碼

Compresor

david 12 年之前
父節點
當前提交
0d155f5ab7
共有 1 個文件被更改,包括 7 次插入0 次删除
  1. 7 0
      Images/icons/compresor.sh

+ 7 - 0
Images/icons/compresor.sh

@@ -0,0 +1,7 @@
+#!/bin/bash
+ls *png > archivos
+while read l; do
+    pngcrush -q "$l" "temp.png"
+    mv "temp.png" "$l"
+done < archivos
+rm archivos