4.2. SyntaxThis section describes the many symbols peculiar to
the Bourne and Korn shells. The topics are arranged as follows:
4.2.4. Command Forms
cmd &
| Execute cmd in background.
|
cmd1 ; cmd2
| Command sequence; execute multiple cmds on the same line.
|
{ cmd1 ; cmd2 ; }
| Execute commands as a group in the current shell.
|
(cmd1 ; cmd2)
| Execute commands as a group in a subshell.
|
cmd1 | cmd2
| Pipe; use output from cmd1 as input to cmd2.
|
cmd1 ‘cmd2‘
| Command substitution; use cmd2 output as arguments to cmd1.
|
cmd1 $(cmd2)
| Korn shell command substitution; nesting is allowed.
|
cmd $((expression))
| Korn shell arithmetic substitution.
Use the result of expression
as argument to cmd.
|
cmd1 && cmd2
| AND; execute cmd1 and then
(if cmd1 succeeds)
cmd2.
This is a “short-circuit” operation;
cmd2 is never executed if cmd1 fails.
|
cmd1 || cmd2
| OR; execute either cmd1 or (if cmd1 fails) cmd2.
This is a “short-circuit” operation;
cmd2 is never executed if cmd1 succeeds.
|
4.2.5. Redirection Forms
File Descriptor | Name | Common Abbreviation | Typical Default |
0
| Standard input
| stdin
| Keyboard
|
1
| Standard output
| stdout
| Terminal
|
2
| Standard error
| stderr
| Terminal
|
The usual input source or output destination can
be changed, as seen in the following sections.
4.2.5.2. Redirection using file descriptors
cmd >&n
| Send cmd output to file descriptor n.
|
cmd m>&n
| Same, except that output that would normally go to file
descriptor m is sent to file
descriptor n instead.
|
cmd >&-
| Close standard output.
|
cmd <&n
| Take input for cmd from file descriptor n.
|
cmd m<&n
| Same, except that input that would normally come from file
descriptor m comes from file
descriptor n instead.
|
cmd <&-
| Close standard input.
|
cmd <&n-
| Move input file descriptor n
instead of duplicating it.
ksh93 only.
|
cmd >&n-
| Move output file descriptor n
instead of duplicating it.
ksh93 only.
|
4.2.5.3. Multiple redirection
cmd 2>file
| Send standard error to file; standard output remains the same (e.g., the screen).
|
cmd > file 2>&1
| Send both standard error and standard output to file.
|
cmd > f1 2>f2
| Send standard output to file f1,
standard error to file f2.
|
cmd | tee files
| Send output of cmd to standard output
(usually the terminal) and to files.
(See the Example in
Chapter 2,
under tee.)
|
cmd 2>&1 | tee files
| Send standard output and error output
of cmd to standard output
(usually the terminal) and to files.
|
No space should appear between file descriptors and a redirection symbol;
spacing is optional in the other cases.
4.2.5.4. Examples$ cat part1 > book
$ cat part2 part3 >> book
$ mail tim < report
$ sed 's/^/XX /g' << END_ARCHIVE
> This is often how a shell archive is "wrapped",
> bundling text for distribution. You would normally
> run sed from a shell program, not from the command line.
> END_ARCHIVE
XX This is often how a shell archive is "wrapped",
XX bundling text for distribution. You would normally
XX run sed from a shell program, not from the command line.
To redirect standard output to standard error:
$ echo "Usage error: see administrator" 1>&2
The following command
sends output (files found) to filelist and error
messages (inaccessible files) to file no_access:
$ find / -print > filelist 2>no_access
 |  |  | 4. The Bourne Shell and Korn Shell |  | 4.3. Variables |
Copyright © 2003 O'Reilly & Associates. All rights reserved.
|