upper2lower

This commit is contained in:
2025-06-19 20:32:35 +02:00
parent 28458eb959
commit 6b8e87ea5f
9 changed files with 54 additions and 8 deletions

View File

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