Can someone step me through the process of creating a Cron job in Linux?
Creating Cron Job
Started by Hektor, Jan 08 2007 08:40 AM
1 reply to this topic
#1
Posted 08 January 2007 - 08:40 AM
|
|
|
#2
Posted 15 January 2007 - 10:29 AM
You want to use the crontab:
1) crontab -e
2) You are in a vi like session now so type "i" to insert a new line.
3) Add a new line:
minute day week month year
5,20,25 * * * * /bin/command.pl
This will execute every hour at minutes 5, 20 and 25.
1) crontab -e
2) You are in a vi like session now so type "i" to insert a new line.
3) Add a new line:
minute day week month year
5,20,25 * * * * /bin/command.pl
This will execute every hour at minutes 5, 20 and 25.


Sign In
Create Account


Back to top









