- At Command in Linux for One-Time Jobs Scheduling
- Understanding the ‘at’ Command
- Installing the ‘at’ Command
- Syntax and Options
- Scheduling a One-Time Job
- Listing and Managing Scheduled Jobs
- Best Practices
- At Command Examples
- Conclusion
- Related Posts
- How to Ignore SSL Certificate Check with Wget
- How to Ignore SSL Certificate Check with Curl
- The `ls` Command in Linux with Practical Examples
- 29 Comments
- Create at job linux
- Использование программы at
- Просмотр всех запланированных задач при помощи atq
- Удаление запланированной задачи при помощи atrm
- Ограничение круга пользователей программы at
At Command in Linux for One-Time Jobs Scheduling
Scheduling tasks in a Linux environment is a common requirement for system administrators and developers. While the cron command is often used for recurring tasks, the “at” command is a powerful tool for scheduling one-time jobs in Linux. This article will provide an in-depth look at the “at” command, its syntax, usage examples, and best practices for managing one-time jobs.
Understanding the ‘at’ Command
The “at” command allows users to schedule a command or script to be executed at a specified time in the future. It is particularly useful for running one-time jobs, such as maintenance tasks, backups, or system updates, without requiring manual intervention. The “at” command reads the commands to be executed from standard input or from a file and schedules them accordingly.
Installing the ‘at’ Command
Most Linux distributions come with the “at” command pre-installed. However, if it is not present on your system, you can install it using the package manager for your distribution.
- For Debian-based distributions, use the following command:
Syntax and Options
The basic syntax of the “at” command is as follows:
- -f : Specifies a file containing the commands to be executed.
- -t : Specifies the time at which to run the commands using a Unix timestamp.
- -m : Sends an email to the user when the job has completed.
- -q : Specifies a queue in which to place the job.
Scheduling a One-Time Job
To schedule a one-time job, simply provide the desired time for execution. The “at” command supports various time formats, such as:
- Relative time: “now + 1 hour” or “now + 30 minutes”
- Absolute time: “2:30 PM” or “15:30”
- Date and time: “10:00 AM tomorrow” or “2023-04-01 18:00”
echo "echo 'Hello, World!' > /tmp/hello_world.txt" | at now + 1 hour
This example schedules a one-time job to create a file containing “Hello, World!” in the /tmp directory after one hour.
You can also schedule the command as below:
at now + 1 hour
echo 'Hello, World!' > /tmp/hello_world.txt
Press CTRL + d to exit from at command terminal.
Listing and Managing Scheduled Jobs
To list all scheduled jobs for the current user, use the “atq” command:
To remove a scheduled job, use the “atrm” command followed by the job ID:
Best Practices
- Always verify that the “at” command is installed and enabled on your system.
- Use descriptive comments in your “at” jobs to make it easier to understand their purpose.
- Test your commands or scripts before scheduling them with the “at” command.
- Remember that the “at” command is designed for one-time jobs. Use the cron command for recurring tasks.
At Command Examples
at 10:00 AM 6/22/2015
at 10:00 AM 6.22.2015
at now + 1 week
at now + 2 weeks
at now + 1 year
at now + 2 years
Conclusion
The “at” command is an essential tool for Linux users who need to schedule one-time jobs. By understanding its syntax and usage, you can effectively automate tasks and improve the efficiency of your workflow. Remember to use best practices when scheduling jobs to ensure that your system runs smoothly and your tasks are completed on time.
Related Posts
How to Ignore SSL Certificate Check with Wget
How to Ignore SSL Certificate Check with Curl
The `ls` Command in Linux with Practical Examples
29 Comments
EXACTLY WHAT I NEEDED.
BTW the recaptcha input is underneath the Submit button in the comments form. Hard to click.
How can we schedule a gtk “graphical” job, for example a simple yad message?
yad –title “Warning” –text “Alarm now, attention” –on-top –borders=25 In my tests, no display is shown at a specified time.
How is it better to schedule installation of upgrades?
For some reason tasks don’t execute. I tried something like: sudo apt-get upgrade -y | at 21:00
please tell me that i want to run a corntab command in every last day of the month.
i am thinking but in some its 30 days and 31 in some and 28 and 29 like that.
59 23 28-31 * * [ "$(date +%d -d tomorrow)" = "01" ] && /root/script.sh
here [ “$(date +%d -d tomorrow)” = “01” ] will retrun true if tomorrow is the first day of next month.
I’m using at to run mplayer and stream some radio station, when i want to stop mplayer and use atrm command it doesn’t work. i got only ” Warning: deleting running job” . job vanishes from the atq list, but it still streams music.
HI, I am experiencing an issue. When i am using the format:
command | at time It is not executing the command that I am providing.
Please tell how to get past it.
Great article Rahul!
I just wanted to extend it a bit with some useful additions.
1) You can use -f option to point “at” to the script you need to run:
at -f /path/to/the/script time_spec
2) One can use “at” to start a process in background without nohup, etc. As easy as
at -f /a/command now
or
echo “/a/command” | at now
3) You can use “at” to run a command repeatedly, but unlike cron you can use “at” to run commands with some period between runs, for example after 3 minutes after previous run was completed. This allow you to avoid various checks preventing next run to start before previous is finished.
Moreover you can define this period as random value. Examples:
The script (lets name it /home/user1/at_run.sh):
————————————-
#!/bin/bash
/the/command/you/need
# fixed period between runs
period=3
# or random period. RANDOM is a bash’s random number from 0 to 32767
period=$[ ($RANDOM % 20) + 15 ]
at -f /home/user1/at_run.sh now + $period minutes
————————————-
run /home/user1/at_run.sh and all next runs will be scheduled automatically, so your /the/command/you/need will run repeatedly forever. Sure, you can break the next run with atq/atrm.
Thx Rahul and Sergey. @Sergey, in your last point you are basically using a wrapper with a random pause and re-scheduling of the at job. I think this is also achievable with cron, without the “various checks preventing next run to start before previous is finished”.
You can just replace the last line of your script with this: sleep $(($period * 60)) && exec /home/user1/at_run.sh Then set a crontab for /home/user1/at_run.sh .
Note: the ‘exec’ bash builtin will prevent calling bash recursively (nested bash’s) and spare memory.
You will need to kill the process to end it. If the job is not supposed to stay permanently (boot safe), I would prefer to use an interactive bash inside a ‘screen’ command and just do a loop: while : ; do
/the/command/you/need
sleep 60
done So you can follow in “live” the output of the script.
hello!
i am running centos. when i submit an at nothing happens. i can call it up using “atq #”, however, it doesn’t execute?
thanks for the help.
Create at job linux
Библиотека сайта rus-linux.net
cron и crontab , которые используются для планирования периодически повторяющихся действий в системе GNU/Linux.
Но в некоторых случаях вам может потребоваться однократно выполнить задачу в заданное время, как раз для этой цели лучше всего подходит программа at , которая также позволяет выполнять команды во время снижения загрузки системы.
Еще одной причиной использования at может быть ваше желание выполнить команду, занимающую много времени, и отключиться от сервера; программа at подойдет и для этой задачи, но я бы также порекомендовал ознакомиться со статьями о запуске команд в фоновом режиме и использовании утилиты screen .
Таким образом, главной задачей программы at является «планирование однократного исполнения задачи». В этом плане она похожа на программу cron , которая обычно используется для планирования периодически повторяющихся задач; давайте рассмотрим основные примеры использования этой программы.
- at выполняет задачи в назначенное время.
- atq выводит список ожидающих выполнения задач для каждого пользователя; в случае использования суперпользователем, выводятся все ожидающие выполнения задачи.
- atrm удаляет задачи, заданные идентификаторами.
- batch выполняет задачи во время периодов низкой загруженности системы; другими словами, когда средний уровень загрузки системы падает ниже значения 1.5 или того значения, которое задано при вызове atd .
Использование программы at
После запуска at предлагает вам ввести последовательность команд для выполнения. Чтобы закончить ввод команд, следует использовать комбинацию клавиш CTRL-D. Описание основных параметров командной строки at приведено ниже:
at [-m] [-q очередь] [-f файл] ВРЕМЯ
- -q используется для указания очереди. Очередь обозначается одной буквой; корректными очередями считаются очереди с идентификаторами от a до z и от A до Z. Очередь с идентификатором a используется по умолчанию, а очередь с идентификатором b является очередью для программы batch . Команды из очередей с идентификаторами, находящимися далее по алфавиту, выполняются с более высоким приоритетом ( nice ). Специальная очередь » tt»>batch . В том случае, если программе atq передан идентификатор очереди, программа выведет команды, находящиеся только в этой очереди.
- -m позволяет отправить пользователю сообщение по электронной почте после выполнения задачи даже в том случае, когда выполненная программа ничего не вывела.
- -f позволяет прочитать команды из файла, а не со стандартного ввода.
- В качестве времени at принимает строки в форматах, совместимых со стандартом POSIX.2. Принимается строка, указывающая время в формате ЧЧ:ММ , позволяющая выполнить команду в назначенное время в течение дня. Вы также можете задать день для выполнения команды при помощи строки, указывающей дату в формате имени месяца и дня с необязательным указанием года или задав дату строкой формата ММДДГГ или ММ/ДД/ГГ или ДД.ММ.ГГ . Указание даты должно следовать за указанием времени.
#date Wed Oct 17 22:31:05 CEST 2012
В том случае, если задать только время, задача будет запланирована на следующий момент достижения этого времени, например, я задал время 20.00, а исполнение задачи было запланировано на следующий день в это время:
#at -f my_at_test.sh 20:00 warning: commands will be executed using /bin/sh job 4 at Thu Oct 18 20:00:00 2012
При этом, если задать время, которое еще не наступило сегодня, исполнение задачи будет запланировано на этот же день:
#at -f my_at_test.sh 22:35 warning: commands will be executed using /bin/sh job 5 at Wed Oct 17 22:35:00 2012
at midnight Friday warning: commands will be executed using /bin/sh at> cp -a /project/source/* /backup/source/^C at> job 6 at Fri Oct 19 00:00:00 2012
Просмотр всех запланированных задач при помощи atq
Вы можете использовать программу atq в качестве альтернативы команде at -l для просмотра списка запланированных или выполняющихся в данный момент задач, а единственным аргументом этой программы является -q для указания определенной очереди.
#atq 3 Thu Oct 18 10:25:00 2012 a linuxaria 4 Thu Oct 18 20:00:00 2012 a linuxaria 6 Fri Oct 19 00:00:00 2012 a linuxaria
На мой взгляд, вывод программы не особенно полезен, так как вы не можете посмотреть, какая команда выполняется в рамках задачи с идентификатором 3 или любой другой задачи.
Для того, чтобы увидеть, что будет выполняться в рамках задачи, вы можете использовать следующую команду:
at -c идентификатор_задачи
Она выведет длинный список переменных окружения для выполнения команды и саму команду:
Этот вывод позволяет гораздо лучше понять предназначение задачи.
Удаление запланированной задачи при помощи atrm
Мы научились просматривать список запланированных задач и при желании их содержимое, теперь настало время рассмотреть способ их удаления из очереди при помощи программы atrm или команды at -d для удаления определенной задачи.
Данная команда ничего не выводит в консоль, но после ее выполнения вы можете убедиться в удалении задачи при помощи команды atq .
Ограничение круга пользователей программы at
Файлы /etc/at.allow и /etc/at.deny устанавливают пользователей, которые могут планировать задачи для последующего исполнения при помощи программ at и batch . В качестве формата этих файлов используется простой список имен пользователей по одному в каждой строке. Использование пробелов в этих файлах не допускается.
Пользователь root может использовать программы at и batch при любых условиях.
В случае существования файла /etc/at.allow , на его основе устанавливается круг пользователей, которым разрешено планирование задач, но обычно в системах этого файла не существует.
Если файла /etc/at.allow не существует, проверяется файл /etc/at.deny , который обычно содержит длинный список «системных пользователей», таких как bin , backup , ftp или www-data , для которых планирование задач запрещено.