5.2. SyntaxThis section describes the many symbols peculiar to
the C shell. The topics are arranged as follows:
Special files
Filename metacharacters
Quoting
Command forms
Redirection forms
5.2.1. Special Files
~/.cshrc | Executed at each instance of shell invocation. |
~/.login | Executed by login shell after .cshrc at login. |
~/.logout | Executed by login shell at logout. |
~/.history | History list saved from previous login. |
/etc/passwd | Source of home directories for ~name abbreviations. (May come from NIS or NIS+ instead.)
|
5.2.2. Filename Metacharacters
Metacharacter | Description |
* | Match any string of zero or more characters. |
? | Match any single character. |
[abc...] | Match any one of the enclosed characters; a hyphen can be used to
specify a range (e.g., a–z, A–Z, 0–9).
|
{abc,xxx,...} | Expand each comma-separated string inside braces.
The strings need not match actual filenames.
|
~ | Home directory for the current user. |
~name | Home directory of user name. |
5.2.4. Command Forms
cmd & | Execute cmd in background. |
cmd1 ; cmd2 | Command sequence; execute multiple cmd s on the same line.
|
(cmd1 ; cmd2) | Subshell;
treat cmd1 and cmd2 as a command group.
|
cmd1 | cmd2 | Pipe; use output from cmd1 as input to cmd2.
|
cmd1 ‘cmd2‘ | Command substitution;
use cmd2 output as arguments to cmd1.
|
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.
|
5.2.5. Redirection Forms
File Desciptor | 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.
5.2.5.1. Simple redirection- cmd > file
- Send output of cmd to file (overwrite).
- cmd >! file
- Same as above, even if noclobber is set.
- cmd >> file
- Send output of cmd to file (append).
- cmd >>! file
- Same as above, but write to file even if
noclobber is set.
- cmd < file
- Take input for cmd from file.
- cmd << text
- Read standard input up to a line identical to
text (text can be stored in a shell
variable). Input is usually typed at the terminal or in the shell
program. Commands that typically use this syntax include cat,
echo, ex, and sed.
If text is quoted (using any of the shell-quoting
mechanisms), the input is passed through verbatim.
5.2.5.2. Multiple redirection
cmd >& file | Send both standard output and standard error to file. |
cmd >&! file | Same as above, even if noclobber is set. |
cmd >>& file | Append standard output and standard error
to end of file.
|
cmd >>&! file | Same as above, but append to or create file even if
noclobber is set.
|
cmd1 |& cmd2 | Pipe standard error together with standard output. |
(cmd > f1) >& 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.)
|
5.2.5.3. Examples% cat part1 > book
% cat part2 part3 >> book
% mail tim < report
% cc calc.c >& error_out
% cc newcalc.c >&! error_out
% grep Unix ch* |& pr
% (find / -print > filelist) >& no_access
% 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.
 |  |  | 5. The C Shell |  | 5.3. Variables |
Copyright © 2003 O'Reilly & Associates. All rights reserved.
|
|