Raspberry & Linux Crontab Example
Contents
- Syntax
- Examples
- Scheduling a Job For a Specific Time
- Schedule a Job For More Than One Instance (e.g. Twice a Day)
- Schedule a Job for Specific Range of Time (e.g. Only on Weekdays)
- Cron Job every weekday during working hours
- How to View Crontab Entries?
- How to Edit Crontab Entries?
- Schedule a Job for Every Minute Using Cron.
- Schedule a Background Cron Job For Every 10 Minutes.
- Schedule a Job For First Minute of Every Year using @yearly
- Schedule a Cron Job Beginning of Every Month using @monthly
- Schedule a Background Job Every Day using @daily
- How to Execute a Linux Command After Every Reboot using @reboot?
- How to Disable/Redirect the Crontab Mail Output using MAIL keyword?
- How to Execute a Linux Cron Jobs Every Second Using Crontab.
- Specify PATH Variable in the Crontab
- Installing Crontab From a Cron File
Syntax
1 | # m h dom mon dow command |
Examples
Scheduling a Job For a Specific Time
The basic usage of cron is to execute a job in a specific time as shown below. This will execute the Full backup shell script (full-backup) on 10th June 08:30 AM.
Please note that the time field uses 24 hours format. So, for 8 AM use 8, and for 8 PM use 20.
1 | 30 08 10 06 * /home/ramesh/full-backup` |
Schedule a Job For More Than One Instance (e.g. Twice a Day)
The following script take a incremental backup twice a day every day.
This example executes the specified incremental backup shell script (incremental-backup) at 11:00 and 16:00 on every day. The comma separated value in a field specifies that the command needs to be executed in all the mentioned time.
1 | 00 11,16 * * * /home/ramesh/bin/incremental-backup |
Schedule a Job for Specific Range of Time (e.g. Only on Weekdays)
If you wanted a job to be scheduled for every hour with in a specific range of time then use the following.
Cron Job everyday during working hoursThis example checks the status of the database everyday (including weekends) during the working hours 9 a.m – 6 p.m
1 | 00 09-18 * * * /home/ramesh/bin/check-db-status |
Cron Job every weekday during working hours
This example checks the status of the database every weekday (i.e excluding Sat and Sun) during the working hours 9 a.m – 6 p.m.
1 | 00 09-18 * * 1-5 /home/ramesh/bin/check-db-status |
How to View Crontab Entries?
View Current Logged-In User’s Crontab entries
To view your crontab entries typecrontab -l
from your unix account as shown below.
1 | ramesh@dev-db$ crontab -l |
View Root Crontab entriesLogin as root user
(su – root)
and docrontab -l
as shown below.
1 | root@dev-db# crontab -l |
Crontab HowTo: View Other Linux User’s Crontabs entriesTo view crontab entries of other Linux users, login to root and use
-u {username} -l
as shown below.
1 | root@dev-db# crontab -u sathiya -l |
How to Edit Crontab Entries?
Edit Current Logged-In User’s Crontab entriesTo edit a crontab entries, use
crontab -e
as shown below. By default this will edit the current logged-in users crontab.
1 | ramesh@dev-db$ crontab -e |
When you save the above temporary file with
:wq
, it will save the crontab and display the following message indicating the crontab is successfully modified.
1 | ~ |
Edit Root Crontab entriesLogin as root user
(su – root)
and docrontab -e
as shown below.
1 | root@dev-db# crontab -e |
Edit Other Linux User’s Crontab File entriesTo edit crontab entries of other Linux users, login to root and use
-u {username} -e
as shown below.
1 | root@dev-db# crontab -u sathiya -e |
Schedule a Job for Every Minute Using Cron.
Ideally you may not have a requirement to schedule a job every minute. But understanding this example will will help you understand the other examples mentioned below in this article.
1 | * * * * * CMD |
The
*
means all the possible unit — i.e every minute of every hour through out the year. More than using this * directly, you will find it very useful in the following cases.
1 | * When you specify */5 in minute field means every 5 minutes. |
Schedule a Background Cron Job For Every 10 Minutes.
Use the following, if you want to check the disk space every 10 minutes.
1 | */10 * * * * /home/ramesh/check-disk-space |
It executes the specified command check-disk-space every 10 minutes through out the year. But you may have a requirement of executing the command only during office hours or vice versa. The above examples shows how to do those things.
Instead of specifying values in the 5 fields, we can specify it using a single keyword as mentioned below.
There are special cases in which instead of the above 5 fields you can use @ followed by a keyword — such as reboot, midnight, yearly, hourly.
Table: Cron special keywords and its meaning
Keyword -Equivalent@yearly
-0 0 1 1 *
@daily
-0 0 * * *
@hourly
-0 * * * *
@reboot
-Run at startup.
Schedule a Job For First Minute of Every Year using @yearly
If you want a job to be executed on the first minute of every year, then you can use the @yearly cron keyword as shown below.
This will execute the system annual maintenance using annual-maintenance shell script at 00:00 on Jan 1st for every year.
1 | @yearly /home/ramesh/red-hat/bin/annual-maintenance |
Schedule a Cron Job Beginning of Every Month using @monthly
It is as similar as the @yearly as above. But executes the command monthly once using @monthly cron keyword.
This will execute the shell script tape-backup at 00:00 on 1st of every month.
1 | @monthly /home/ramesh/suse/bin/tape-backup |
Schedule a Background Job Every Day using @daily
Using the @daily cron keyword, this will do a daily log file cleanup using cleanup-logs shell scriptat 00:00 on every day.
1 | @daily /home/ramesh/arch-linux/bin/cleanup-logs "day started" |
How to Execute a Linux Command After Every Reboot using @reboot
?
Using the
@reboot
cron keyword, this will execute the specified command once after the machine got booted every time.
1 | @reboot CMD |
How to Disable/Redirect the Crontab Mail Output using MAIL keyword?
By default crontab sends the job output to the user who scheduled the job. If you want to redirect the output to a specific user, add or update the MAIL variable in the crontab as shown below.
1 | ramesh@dev-db$ crontab -l |
If you wanted the mail not to be sent to anywhere, i.e to stop the crontab output to be emailed, add or update the MAIL variable in the crontab as shown below. MAIL=””
How to Execute a Linux Cron Jobs Every Second Using Crontab.
You cannot schedule a every-second cronjob. Because in cron the minimum unit you can specify is minute. In a typical scenario, there is no reason for most of us to run any job every second in the system.
Specify PATH Variable in the Crontab
All the above examples we specified absolute path of the Linux command or the shell-script that needs to be executed.
For example, instead of specifying
/home/ramesh/tape-backup
, if you want to just specify tape-backup, then add the path/home/ramesh
to the PATH variable in the crontab as shown below.
1 | ramesh@dev-db$ crontab -l |
Installing Crontab From a Cron File
Instead of directly editing the crontab file, you can also add all the entries to a cron-file first. Once you have all thoese entries in the file, you can upload or install them to the cron as shown below.
1 | ramesh@dev-db$ crontab -l |
Resources:
http://www.thegeekstuff.com/tag/productivity-tips-for-geeks/
Author: itabas016
Link: https://tech.itabas.com/2016/09/10/raspberry/raspberry-linux-crontab-examples/
License: CC BY-NC-ND 4.0