I am using mp3splt to split all the .mp3 files under a directory, including subdirectories, into 30 minute slices.
find -name *.mp3 -print0 | xargs -0 mp3splt -t 30.00 -o @f_@m@s
What is the best way to delete the original file after the splitting is complete?