Skip to content

Instantly share code, notes, and snippets.

@wasimosmanhome
Last active August 9, 2020 22:20
Show Gist options
  • Save wasimosmanhome/afa72dc2475d1c6f1b4c4484eb11c7c1 to your computer and use it in GitHub Desktop.
Save wasimosmanhome/afa72dc2475d1c6f1b4c4484eb11c7c1 to your computer and use it in GitHub Desktop.
crontab
# m h dom mon dow command
# 0 6 * * * bash /home/pi/Documents/router_restart.py && date >> /home/pi/Music/samplefile.txt
# 0 6 * * * python /home/pi/Documents/router_restart.py && date >> /home/pi/Music/samplefile.txt
1 * * * * date >> /home/pi/Music/samplefile.txt
#Option1
0 6 * * * bash -c 'python /home/pi/Documents/router_restart.py && date >> /home/pi/Music/samplefile.txt'
#Option2
0 6 * * * /home/pi/Music/restart-commands.sh - Make sure you run chmod +X /home/pi/Music/restart-commands.sh
# contents of restart-commands.sh
python /home/pi/Documents/router_restart.py
date >> /home/pi/Music/samplefile.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment