Skip to content

Instantly share code, notes, and snippets.

@kopiro
Created February 3, 2021 16:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kopiro/72932c5ad9e664b8bb1203b262db7b5c to your computer and use it in GitHub Desktop.
Save kopiro/72932c5ad9e664b8bb1203b262db7b5c to your computer and use it in GitHub Desktop.
NEF to JPG converter
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