Skip to content

Instantly share code, notes, and snippets.

@marcolussetti
Last active June 18, 2017 19:33
Show Gist options
  • Save marcolussetti/d50e8086dc2300e3975a0a9fe024ae19 to your computer and use it in GitHub Desktop.
Save marcolussetti/d50e8086dc2300e3975a0a9fe024ae19 to your computer and use it in GitHub Desktop.
Looper once hourly to check for new grades
!/bin/bash
mytru_output="$(./mytru-cli.py)"
until echo "$mytru_output" | grep ",";
do
echo "$(date)"
sleep 1h
mytru_output="$(./mytru-cli.py)"
done
echo "$mytru_output" | xargs sh mail.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment