Browse Source

Compresor

david 12 năm trước cách đây
mục cha
commit
0d155f5ab7
1 tập tin đã thay đổi với 7 bổ sung0 xóa
  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