Skip to content

Instantly share code, notes, and snippets.

@davps
Last active August 30, 2017 12:38
Show Gist options
  • Select an option

  • Save davps/90d94e68355470f20bc6354a157f7f2a to your computer and use it in GitHub Desktop.

Select an option

Save davps/90d94e68355470f20bc6354a157f7f2a to your computer and use it in GitHub Desktop.
Imagemagick scripts I frequently use
#Installation
brew install imagemagick
brew install ghostscript
brew install ufraw
netpbm dcraw
#Convert all .NET files to .JPG
for img in *.NEF; do convert "$img" "$img.jpg"; done
source: http://superuser.com/a/577661
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment