What is the procedure of "at" and crontab" commands?
Answer Posted / s.rajasekhar
at - executes single time
crontab- executes Multiple time.
at:If you want postpone the excution of process we can use
at command.but you should specify time for running process.
crontab:If you want run some jobs at daily or some times u
can keep those jobs in crontab file.those are cronjobs.
crontab -l:To open crontab file
crontab -e:To edit the crontab file
crontab -r:To remove the crontab file
* * * * * job name
star1:min(1 to 59)
star2:hour(0 to 23)
star3:day of the month(1 to 31)
star4:month(1 to 12)
star5:day of the week(0 to 6)
here zero indicates Sunday
15 05 * * 1-5 job schedule----->This job will run everyday
at 5:15am except Sunday.
Like this so many jobs we can keep in one crontab file.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What are the differences among a system call, a library function, and a unix command?
What is grep command in unix with examples?
What is the use of finger command?
How to find $ai_serual resolved path by using unix
What does touch command do in unix?
Name the general commands in using unix os for a beginner?
Are you in or at the office?
Explain command to display different lines that are found when compare two files?
Can you enlist some commonly used network commands?
What does the metacharacter mean?
What do chmod command do?
Which command is used to find whether the system is 32 bit or 64 bit?
What is the command to compare two files in unix?
What is unix command?
Write a command that will find all text files in a directory such that it does not contain the word "amazing" in any form (that is, it must include the words amazing, amazing, or amazing)?