Files
txt2apkg/GoetheVerlag/mp3/045/convert.sh
2025-06-19 20:32:35 +02:00

10 lines
82 B
Bash
Executable File

#!/bin/bash
for i in $(ls *.wav)
do
python3 convert.py $i
echo $i
rm -f $i
done