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