sips --getProperty pixelHeight filename.ext
の出力を処理する と sips --getProperty pixelWidth filename.ext
条件で使用し、必要に応じてサイズ変更操作のみを実行します。
#!/bin/bash
height=`sips --getProperty pixelHeight url.png | sed -E "s/.*pixelHeight: ([0-9]+)/\1/g" | tail -1`
width=`sips --getProperty pixelWidth url.png | sed -E "s/.*pixelWidth: ([0-9]+)/\1/g" | tail -1`
if [[ $height -gt 500 || $width -gt 500 ]]; then
growlnotify -m "large file needs reducing"
fi
残りは自分で行うことができます。