What do I need to write in crontab to execute a script at 3pm every day?
Answer
You are looking for something like this (via crontab -e):
0 15 * * * your.command.goes.here
15 is the hour and 0 is the minute that the script is run. Day of month, month, and day of week get wildcards so that the script gets run daily.
Comments
Post a Comment