Last active
August 30, 2017 12:38
-
-
Save davps/90d94e68355470f20bc6354a157f7f2a to your computer and use it in GitHub Desktop.
Imagemagick scripts I frequently use
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #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