Quote:
Originally Posted by tajamari
0 * * * * yourscript
create it as a text file if you want to save it. then run crontab yourfile.txt
|
That's wrong. This will run the job every hour on the hour.
Code:
0 */4 * * * yourscript
would run it every 4 hours on the hour.
Cheers,
Tink