Created
April 1, 2016 13:02
-
-
Save RickDB/18f3421148adbe57dedf08f8a61b6f0c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#write out current crontab | |
crontab -l > mycron | |
#echo new cron into cron file | |
echo "0 18 * * * hyperion-remote --clearall" >> mycron | |
echo "30 22 * * * hyperion-remote --color black -p 1" >> mycron | |
#install new cron file | |
crontab mycron | |
rm mycron |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment