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.
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.