music-graph-scripts/task_runner.sh
2020-06-14 13:26:24 -04:00

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