Good tip!
If you want the output jpegs be in sRGB color profile (instead of the default and Apple specific Display P3 ), then modify the command to:
for i in *.NEF; do sips -s format jpeg --matchTo "/System/Library/ColorSync/Profiles/sRGB Profile.icc" $i --out "${i%.*}.jpg"; done
Good tip!
If you want the output jpegs be in sRGB color profile (instead of the default and Apple specific Display P3 ), then modify the command to:
for i in *.NEF; do sips -s format jpeg --matchTo "/System/Library/ColorSync/Profiles/sRGB Profile.icc" $i --out "${i%.*}.jpg"; done