Removed unnessary program, changed control flow of mkv-cat
parent
7c8cd7b685
commit
54bd90a1ec
@ -1,17 +0,0 @@
|
||||
#!/bin/dash
|
||||
#ffconv - Batch convert from one format to another
|
||||
echo Convert from...
|
||||
read ext
|
||||
echo Convert to...
|
||||
read toext
|
||||
|
||||
for i in *.$ext; do ffmpeg -i "$i" "${i%.*}.$toext"; done
|
||||
|
||||
while true; do
|
||||
read -p "Delete original files? " yn
|
||||
case $yn in
|
||||
[Yy]* ) rm *.$ext; exit;;
|
||||
[Nn]* ) exit;;
|
||||
* ) printf "Please answer yes or no. ";;
|
||||
esac
|
||||
done
|
||||
Loading…
Reference in New Issue