I want to execute a script once an hour from 20:00 to 08:00. Would the following work?
0 20-8 * * * location_of_script_to_run
I'm currently using the following:
0 20,21,22,23,0,1,2,3,4,5,6,7,8 * * * location_of_script_to_run
Also, is there a way I can test this without having to actually wait? I imagine I'd need to temporarily alter the time on the system to trigger the execution.