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