Created
February 3, 2021 16:03
-
-
Save kopiro/72932c5ad9e664b8bb1203b262db7b5c to your computer and use it in GitHub Desktop.
NEF to JPG converter
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
mkdir -p ./JPG | |
find . -name "*.NEF" -print0 | xargs -0 -P "$(sysctl -n hw.ncpu)" -I file sips -s format jpeg file --out ./JPG/file.jpg |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment