blob: b4e8bfa925855a847e083a2aef4b6c24caa90855 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/bash
for file in *.ogg; do
OUTPUT=${file%.ogg}
echo $OUTPUT
ffmpeg -i "$file" "$OUTPUT.mp3"
done
printf "\n¿Borrar archivos originales? (s / n) "
read respuesta
if [ $respuesta = "s" ] ; then
rm -f *.ogg
else
echo > /dev/null
fi
|