一些常用的shell命令

查找目录下size大于100M的文件:

find . -type f -size +100M  -print0 | xargs -0 ls -lh /* “.”表示当前目录*/

等比例按照尺寸缩放图片,用于对ios的图标进行生成

sips -Z $1 icon.png --out icon_$1x$1.png

生成图标的shell脚本:

#!/bin/bash
IconWithSize() {
    #-Z 等比例按照给定尺寸缩放最长边。
    sips -Z $1 icon.png --out icon_$1x$1.png
}
  
for size in  29 40 50 57 58 60 72 76 80 87 100 114 120 144 152 180
do
    IconWithSize $size
done

你可能感兴趣的:(一些常用的shell命令)