I'm trying to avoid having to repeat the entire process i.e. rip twice. Or is there another way to do it altogether? I can't see a way to do this (i.e. encode more than one .wav file) from the command line but maybe I've missed something.
TIAs Syd
Why not something like
for i in *.wav do o=`echo $i | sed -e "s/.wav/.mp3/g" ` bladeenc -q $i $o done
Replace baldeenc for whatever encoder you want and add options for bitrate etc..should work fine