Which Linux scheduling utility is specifically designed to execute a command once at a specified time in the future, rather than to run jobs on a recurring schedule?
The at utility queues a command to run a single time at the specified future time or date. Once the job executes, it is removed from the queue. Tools such as cron, anacron, or systemd timer units are intended for recurring or repetitive execution, not single-run tasks. Therefore, at is the correct choice for one-time scheduling.
Ask Bash
Bash is our AI bot, trained to help you pass your exam. AI Generated Content may display inaccurate information, always double-check anything important.
What is the difference between 'at' and 'cron' commands?
Open an interactive chat with Bash
How do you use the 'at' command to schedule a task?
Open an interactive chat with Bash
What types of tasks can be scheduled with the 'at' command?