Convert multiple files in one command

From the directory where you have your files, you can do it with the following command:

for f in *.NEF; do convert "$f" "${f%.*}.png"; done