I have a crontab job I am trying to setup: I have this at the moment from reading the documentation and the web.
30 12 * * * reboot
40 12 * * * python /home/dev/workspace/Testing/__init__.py
50 12 * * * poweroff
is there someway to randomly change the execution time so make it randomly run between 12:00Pm and 1:00PM?
Also can I tie the poweroff to the python script successfully completing?
Thought I should just clarify I want to leave my computer off and have it automatically start up run the python script then switch itself back off.
Thanks