Sponsored Links

Sabtu, 24 Maret 2018

Sponsored Links

UNIX-1.5 Awk, Cut, Last, Wc Commands Video Tutorial - YouTube
src: i.ytimg.com

In Unix-like computer operating systems, the at command is used to schedule commands to be executed once, at a particular time in the future.


Video At (Unix)



Design

at reads a series of commands from standard input and collects them into one "at-job" which is carried out at a later date. The job inherits the current environment, so that it is executed in the same working directory and with the same environment variables set as when it was scheduled.

It differs from cron, which is used for recurring executions (e.g. once an hour, every Tuesday, January 1 every year). As with cron, many Unix systems allow the administrator to restrict access to the at command.

at can be made to mail a user when done carrying out a scheduled job of his, can use more than one job queue, and can read a list of jobs to carry out from a file instead of standard input.


Maps At (Unix)



Usage

A sample command to compile a C program at 11:45 a. m. on January 31st would be:

or

The atq program lists the currently queued jobs, while atrm removes jobs from the queue:

In some Unix-like computer operating systems it uses a daemon, atd, which waits in the background periodically checking the list of jobs to do and executing those at their scheduled time on behalf of at.


Basic UNIX Commands-awk - YouTube
src: i.ytimg.com


Variants

The batch command can be used instead of at to only run scheduled jobs if the system's load average is below a certain value.

Windows NT/2000/XP/7 also has an at command (similar to cron), but it is deprecated in favor of Task Scheduler.


python - Subprocess bad performance in unix shell script - Stack ...
src: i.imgur.com


See also

  • Cron, runs scheduled tasks at regular intervals
  • systemd, incorporates atd
  • Launchd, Apple Computer's replacement for at
  • List of Unix programs

Basic UNIX Commands - sed - YouTube
src: i.ytimg.com


External links

  • at: execute commands at a later time - Commands & Utilities Reference, The Single UNIX Specification, Issue 7 from The Open Group
  • batch: schedule commands to be executed in a batch queue - Commands & Utilities Reference, The Single UNIX Specification, Issue 7 from The Open Group

Source of the article : Wikipedia

Comments
0 Comments