In crontab does the Day of the Week field run from 0 - 6 or 1 -7?
I am seeing conflicting information on this. wikipedia states 0-6 and other sites I have seen are 1-7.
Also what would be the implication or either …
I have few crontab jobs that run under root, but that gives me some problems. For example all folders created in process of that cron job are under user root and group root.
How can i make it to run …
I need to set up a cron job that runs an executable compiled using gcc once every hour.
I logged in as root and typed crontab -e
Then I entered the following and saved the file.
0 * * * * /path_to_executable
However, …