Files
txt2apkg/GoetheVerlag/mp3/017/convert.sh
2025-06-22 19:34:06 +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