Author : Piyush Gupta
While working on Linux systems we preferred crontab for scheduling jobs generally. There are another utility at command is very useful for scheduling one time tasks. It reads commands from standard input or script/file which can be executed later once. But we can’t use at command for any recurring tasks. For recurring tasks use Linux crontab.
At command can be useful for shutdown system at the specified time, Taking a one-time backup, sending email as a reminder at the specified time etc. This article will help you to understand the working of at command with useful examples.
Commands used with at:
Use ^d to exit from at prompt.
You can also use the following option to schedule a job. The below command will run “sh backup.sh” at 9:00 in the morning.
When we list jobs by root account using atq, it shows all users jobs in the result. But if we execute it from a non-root account, it will show only that users jobs.
Fields description:
In the above example, 5 is the job id.
The above job will execute on next 12:00 AM
Thanks for reading this article, We hope you will understand how to use ‘at’ command in Linux.
While working on Linux systems we preferred crontab for scheduling jobs generally. There are another utility at command is very useful for scheduling one time tasks. It reads commands from standard input or script/file which can be executed later once. But we can’t use at command for any recurring tasks. For recurring tasks use Linux crontab.
At command can be useful for shutdown system at the specified time, Taking a one-time backup, sending email as a reminder at the specified time etc. This article will help you to understand the working of at command with useful examples.
Commands used with at:
- at : execute commands at specified time.
- atq : lists the pending jobs of users.
- atrm : delete jobs by their job number.
1. Schedule first job using at command
Below example will schedule “sh backup.sh” command to be executed on next 9:00 AM once.You can also use the following option to schedule a job. The below command will run “sh backup.sh” at 9:00 in the morning.
2. List the scheduled jobs using atq
First filed: job id
Second filed: Job execution date
third filed: Job execution time
Last field: User name, under which job is scheduled.
3. Remove scheduled job using atrm
You can remove any at job using atrm with their job id.4. Check the content of scheduled at job
atq command only shows the list of jobs but if you want to check what script/commands are scheduled with that task, below example will help you.Examples of at Command:
Example 1: Schedule task at coming 10:00 AM.
Example 2: Schedule task at 10:00 AM on coming Sunday.
Example 3: Schedule task at 10:00 AM on coming 25’th July.
Example 4: Schedule task at 10:00 AM on coming 22’nd June 2015.
Example 5: Schedule task at 10:00 AM on the same date at next month.
Example 6: Schedule task at 10:00 AM tomorrow.
Example 7: Schedule task at 10:00 AM tomorrow.
Example 8: Schedule task to execute just after 1 hour.
Example 9: Schedule task to execute just after 30 minutes.
Example 10: Schedule task to execute just after 1 and 2 weeks.
Example 11: Schedule task to execute just after 1 and 2 years.
Example 12: Schedule task to execute at midnight.
Thanks for reading this article, We hope you will understand how to use ‘at’ command in Linux.
No comments:
Post a Comment