December 2015
Beginner
306 pages
5h 2m
English
If we need to run a specific task repetitively, then the solution is to use crontab.
The syntax of the command is as follows:
$ crontab –e
This will open a new editor. The following diagram is the syntax to add tasks. The fields to use for repeating tasks at what time are explained here:

Finally, to save the jobs, use the following:
wq # save and quite crontab job
The following are a few examples of the crontab command:
5 * * * * $HOME/bin/daily.job >> $HOME/tmp/out 2>&1
5 0 * * * $HOME/bin/daily.job ...