mirror of
https://github.com/simon987/music-graph-scripts.git
synced 2025-04-04 06:52:58 +00:00
21 lines
337 B
Bash
Executable File
21 lines
337 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if [[ -z "${LASTFM_APIKEY}" ]]; then
|
|
echo "LASTFM_APIKEY is not set"
|
|
exit
|
|
fi
|
|
|
|
if [[ -z "${SPOTIFY_CLIENTID}" ]]; then
|
|
echo "SPOTIFY_CLIENTID is not set"
|
|
exit
|
|
fi
|
|
|
|
if [[ -z "${SPOTIFY_SECRET}" ]]; then
|
|
echo "SPOTIFY_SECRET is not set"
|
|
exit
|
|
fi
|
|
|
|
while true; do
|
|
/usr/bin/time python3 "$@" &>> "$1".log
|
|
done
|