10 lines
82 B
Bash
Executable File
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
|
|
|