[SOLVED] Dsd2flac - converting multiple dff files

Time to learn some basic shell scripting:

for f in *.dff; do dsf2flac -i "$f"; done

This will loop through each *.dff file in turn and run the dsf2flac command for each.

5 Likes