Batch convert NEF (raw) to PNG
Here is a simple script for converting raw NEF files from a Nikon to PNG format. It uses the convert utility which can handle a large variety of file types and has various options for the conversion. This is just a simple script that will generate a PNG that is either 1024 px wide or high.
#!/bin/bash
##################################
# Convert files to png #
##################…