diff options
author | mono-b <monoblanco@DRAINERDOMAIN.localdomain> | 2022-12-19 20:05:59 -0300 |
---|---|---|
committer | mono-b <monoblanco@DRAINERDOMAIN.localdomain> | 2022-12-19 20:05:59 -0300 |
commit | e97f4dd3e3f3f7f4f7b51e1bc5b9ebe1bdb8eecb (patch) | |
tree | 6028ad8b815859f2f72ff7d8951df00b9fae7a43 /mp3ogg.sh | |
parent | 0a043dbb7259cc59ac56b31573469f445a7921ed (diff) |
fixes
Diffstat (limited to 'mp3ogg.sh')
-rwxr-xr-x | mp3ogg.sh | 9 |
1 files changed, 3 insertions, 6 deletions
@@ -6,10 +6,7 @@ for file in *.mp3; do ffmpeg -i "$file" "$OUTPUT.ogg" done -printf "\n¿Borrar archivos originales? (s / n) " -read respuesta +printf "\nDelete original files? (y / n) " +read answer -case $respuesta in -s) - rm -f *.mp3 ;; -esac +[[ $answer == "y" ]] && rm -f *.mp3 |