Skip to content

Instantly share code, notes, and snippets.

@TexRx
Created June 25, 2015 06:20
Show Gist options
  • Save TexRx/176f8adf9b5d8a571e53 to your computer and use it in GitHub Desktop.
Save TexRx/176f8adf9b5d8a571e53 to your computer and use it in GitHub Desktop.
use sips to resize images in folder - bash func
resize () {
local ext="${1:?Usage: resize-all <png|jpg|jpeg|gif> 800}"
local size="${2:-800}"
for f in *.$ext ; do sips -Z $size $f ; done
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment