community man page

at

Execute commands once at a later time. Results will be sent to the users mail.

13 examples·source: tldr · CC-BY·status: verified
Reading is open to everyone. Suggesting a flag, fixing an example or adding a recipe is opening to verified-email accounts soon — every change is moderated before it goes live.
curl https://curlhub.sh/man/at
same page, in your terminal

Examples

Start the `atd` daemon GNU

systemctl start atd

Create commands interactively and execute them in 5 minutes (press `<Ctrl d>` when done) GNU

at now + 5 minutes

Create commands interactively and execute them at a specific time GNU

at hh:mm

Execute a command from `stdin` at 10:00 AM today GNU

echo "command" | at 1000

Execute commands from a given file next Tuesday GNU

at -f path/to/file 9:30 PM Tue

List all queued jobs for the current user (same as `atq`) GNU

at -l

View a specified job GNU

at -c job_number

Create commands interactively and execute them in 5 minutes (press `<Ctrl d>` when done)

at now + 5 minutes

Create commands interactively and execute them at a specific time

at hh:mm

Execute a command from `stdin` at 10:00 AM today

echo "command" | at 1000

Execute commands from a given file next Tuesday

at -f path/to/file 9:30 PM Tue

List all queued jobs for the current user (same as `atq`)

at -l

View a specified job

at -c job_number