-->
Previous Table of Contents Next


OPTIONS

-b The same as the batch command.
-d The same as the atrm command.
-f file Takes input (that is, the names of commands) from file instead of standard input.
-l The same as the atq command
-m Sends electronic mail when the job is completed.
-q queue Sets the niceness level for the at command, using a queue designation. This designation is a single letter, ranging from a to z. The higher the letter, the “nicer” the command will run (see nice for a description of niceness and the Linux operating system). The default for at is c, so if you want a command to be run when the system has less stress, you’d choose a letter like m as the queue designation. Conversely, if you want a command to be run no matter what, you’d use a queue designation of a.
-V Prints the version number.

RELATED COMMANDS

atq
artm
batch

at......Print At

atq option user job-ID

PURPOSE

The atq command lists all jobs that are already scheduled with the at command (for the superuser) or the jobs of a specific user, as well as a specific job ID. This is the same as at -l.

OPTIONS

-q queue Sets the niceness level for the at command, using a queue designation. This designation is a single letter, ranging from a to z. The higher the letter, the “nicer” the command will run (see nice for a description of niceness and the Linux operating system). The default for at is c, so if you want a command to be run when the system has less stress, you’d choose a letter like m as the queue designation. Conversely, if you want a command to be run no matter what, you’d use a queue designation of a.
-v Shows jobs that have been completed but not yet deleted from the queue.

RELATED COMMANDS

at
atrm
batch

atrm......Remove Job

atrm option user job-ID

PURPOSE

The atrm command removed jobs scheduled with the at command. Superusers can delete all jobs, while other users can remove only their own jobs. This is the same as at -d.

RELATED COMMANDS

at
atq
batch

batch......Run Batch Commands

batch option(s) time

PURPOSE

The batch command runs a series of commands one at a time, which are entered from a command line as standard input. The difference between batch and at is that batch automatically runs the commands when the system load is light; in these cases, you don’t specify when the command is to be run. However, you can specify an execution time with the batch command.

When you have finished entering the commands from the command line, use Ctrl-D to end input.

OPTIONS

-f file Runs commands from file, not from standard input on the command line.
-m Sends electronic mail when the job is completed.

EXAMPLE


$ batch

pr -a kevin.memo

lp kevin.memo

Ctrl-D

RELATED COMMAND

at

cpio......Create Archive

cpio flags option(s)

PURPOSE

The cpio command is used to create archives, either on a local filesystem or on a tape backup. The default is to copy to a tape archive.

FLAGS

The cpio command must be combined with one or more of the following flags:

-i option patterns Copies all files that match patterns, which can incorporate wildcards. (If you use wildcards, you must quote them so that the shell doesn’t interpret them.) If you don’t specify a pattern, then all files are copied.
-o options Copies all files specified by name.
-p options directory Copies files to a local directory, instead of to a tape archive.

The options available to each flag is part of the explanations of each option.


Previous Table of Contents Next