6 lines
104 B
Bash
Executable file
6 lines
104 B
Bash
Executable file
#!/bin/sh
|
|
# Lists the keys for each given song
|
|
for arg
|
|
do echo -n "$arg: "
|
|
keyfinder-cli "$arg"
|
|
done
|