diff --git a/oga-converter.sh b/oga-converter.sh index 7bb2ca3..69da90e 100755 --- a/oga-converter.sh +++ b/oga-converter.sh @@ -4,7 +4,7 @@ while true do - read -p "Should Oga-Converter confirm each conversion? (y/n)" ANSWER + read -p "Should Oga-Converter confirm each conversion? (y/n) " ANSWER case $ANSWER in [yY]* ) CONFIRMATION=true break;; @@ -39,3 +39,22 @@ do ffmpeg -loglevel warning -i $f $OUTFILE.oga fi done + +while true +do + read -p "Do you wish to delete the old files? (y/n) " ANSWER + case $ANSWER in + [yY]* ) echo "Deleting the old files..." + for f in $@ + do + rm $f + done + echo "Done." + break;; + + [nN]* ) echo "Goodbye!" + break;; + + * ) echo "Please enter a valid option." + esac +done