dotfiles/.local/bin/scripts/keys

7 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