Ask if you want to remove the files.

This commit is contained in:
Nicolás A. Ortega 2016-04-24 00:14:58 +02:00
parent 8cadc75e83
commit 426ee567bc
No known key found for this signature in database
GPG Key ID: 4825F773B8D44EFF

View File

@ -4,7 +4,7 @@
while true while true
do 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 case $ANSWER in
[yY]* ) CONFIRMATION=true [yY]* ) CONFIRMATION=true
break;; break;;
@ -39,3 +39,22 @@ do
ffmpeg -loglevel warning -i $f $OUTFILE.oga ffmpeg -loglevel warning -i $f $OUTFILE.oga
fi fi
done 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