Files
txt2apkg/GoetheVerlag/mp3/018/output_phrases/convert.sh
2025-05-31 19:33:05 +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