6 lines
75 B
Bash
Executable File
6 lines
75 B
Bash
Executable File
#! /bin/bash
|
|
|
|
for i in $(ls $1/*.mp3); do
|
|
python3 toRightName.py $i
|
|
done
|