TCSH(1) | General Commands Manual | TCSH(1) |
tcsh
— C shell
with file name completion and command line editing
tcsh |
[-bcdefFimnqstvVxX ]
[-D name[=value]]
[arg] ... |
tcsh |
-l |
tcsh
is an enhanced but completely
compatible version of the Berkeley UNIX C shell,
csh(1). It is a command language interpreter
usable both as an interactive login shell and a shell script command
processor. It includes a command-line editor (see
The command-line editor
(+)), programmable word completion (see
Completion and listing
(+)), spelling correction (see
Spelling correction (+)),
a history mechanism (see History
substitution), job control (see Jobs) and
a C-like syntax. The NEW FEATURES
(+) section describes major enhancements of tcsh
over csh(1). Throughout this manual,
features of tcsh
not found in most
csh(1) implementations (specifically, the
4.4BSD csh(1)) are labeled with
‘(+)’, and features which are present in
csh(1) but not usually documented are
labeled with ‘(u)’.
If the first argument (argument 0) to the shell is
‘-
’ then it is a login shell. A login
shell can be also specified by invoking the shell with the
-l
flag as the only argument.
The rest of the flag arguments are interpreted as follows:
-b
-c
command
shell variable for reference, and executed. Any remaining arguments are
placed in the argv
shell variable.-d
-D
name[=value]-e
-f
-F
-i
-l
-l
is the only flag specified.-m
-m
to the shell. (+)-n
-q
-s
-t
\
’ may be used to escape the
newline at the end of this line and continue onto another line.-v
verbose
shell variable, so that command
input is echoed after history substitution.-x
echo
shell variable, so that commands are
echoed immediately before execution.-V
verbose
shell variable even before
executing ~/.tcshrc.-X
-x
as -V
is to
-v
.--help
--version
version
shell variable. (+)After processing of flag arguments, if arguments remain but none
of the -c
, -i
,
-s
, or -t
options were
given, the first argument is taken as the name of a file of commands, or
“script”, to be executed. The shell opens this file and saves
its name for possible resubstitution by
‘$0
’. Because many systems use either
the standard version 6 or version 7 shells whose shell scripts are not
compatible with this shell, the shell uses such a “standard”
shell to execute a script whose first character is not a
‘#
’, i.e., that does not start with a
comment.
Remaining arguments are placed in the argv
shell variable.
A login shell begins by executing commands from the system files
/etc/csh.cshrc and
/etc/csh.login. It then executes commands from files
in the user's home directory: first
~/.tcshrc (+) or, if
~/.tcshrc is not found,
~/.cshrc, then the contents of
~/.history (or the value of the
histfile
shell variable) are loaded into memory,
then ~/.login, and finally
~/.cshdirs (or the value of the
dirsfile
shell variable) (+). The shell may read
/etc/csh.login before instead of after
/etc/csh.cshrc, and ~/.login
before instead of after ~/.tcshrc or
~/.cshrc and ~/.history, if
so compiled; see the version
shell variable. (+)
Non-login shells read only /etc/csh.cshrc and ~/.tcshrc or ~/.cshrc on startup.
For examples of startup files, please consult: http://tcshrc.sourceforge.net
Commands like stty(1) and
tset(1), which need be run only once per
login, usually go in one's ~/.login file. Users who
need to use the same set of files with both
csh(1) and tcsh
can
have only a ~/.cshrc which checks for the existence
of the tcsh
shell variable before using
tcsh
-specific commands, or can have both a
~/.cshrc and a ~/.tcshrc
which source
s (see the builtin command)
~/.cshrc. The rest of this manual uses
~/.tcshrc to mean ~/.tcshrc
or, if ~/.tcshrc is not found,
~/.cshrc.
In the normal case, the shell begins reading commands from the terminal, prompting with
>
(Processing of arguments and the use of the shell to process files containing command scripts are described later.) The shell repeatedly reads a line of command input, breaks it into words, places it on the command history list, parses it and executes each command in the line.
One can log out by typing ^D
on an empty
line, logout
or login
or via
the shell's autologout mechanism (see the autologout
shell variable). When a login shell terminates it sets the
logout
shell variable to
‘normal
’ or
‘automatic
’ as appropriate, then
executes commands from the files /etc/csh.logout and
~/.logout. The shell may drop DTR on logout if so
compiled; see the version
shell variable.
The names of the system login and logout files vary from system to system for compatibility with different csh(1) variants; see FILES.
We first describe The command-line editor (+). The Completion and listing (+) and Spelling correction (+) sections describe two sets of functionality that are implemented as editor commands but which deserve their own treatment. Finally, Editor commands (+) lists and describes the editor commands specific to the shell and their default bindings.
Command-line input can be edited using key sequences much like
those used in emacs(1) or
vi(1). The editor is active only when the
edit
shell variable is set, which it is by default
in interactive shells. The bindkey
builtin can
display and change key bindings to editor commands (see
Editor commands (+)).
emacs(1)-style key bindings are used by
default (unless the shell was compiled otherwise; see the
version
shell variable), but
bindkey
can change the key bindings to
vi(1)-style bindings en masse.
The shell always binds the arrow keys (as defined in the
TERMCAP
environment variable) to editor
commands:
unless doing so would alter another single-character binding. One
can set the arrow key escape sequences to the empty string with
settc
to prevent these bindings. The ANSI/VT100
sequences for arrow keys are always bound.
Other key bindings are, for the most part, what
emacs(1) and
vi(1) users would expect and can easily be
displayed by bindkey
, so there is no need to list
them here. Likewise, bindkey
can list the editor
commands with a short description of each. Certain key bindings have
different behavior depending if emacs(1)
or vi(1)-style bindings are being used; see
vimode
for more information.
Note that editor commands do not have the same notion of a
“word” as does the shell. The editor delimits words with any
non-alphanumeric characters not in the shell variable
wordchars
, while the shell recognizes only
whitespace and some of the characters with special meanings to it, listed
under Lexical structure.
The shell is often able to complete words when given a unique abbreviation. For example, typing part of a word
ls /usr/lost
complete-word
editor
command. The shell completes the filename /usr/lost to
/usr/lost+found/, replacing the incomplete word with
the complete word in the input buffer. (Note the terminal
‘/’; completion adds a
‘/
’ to the end of completed directories
and a space to the end of other completed words, to speed typing and provide a
visual indicator of successful completion. The
addsuffix
shell variable can be unset to prevent
this.) If no match is found (perhaps /usr/lost+found
doesn't exist), the terminal bell rings. If the word is already complete
(perhaps there is a /usr/lost on your system, or
perhaps you were thinking too far ahead and typed the whole thing) a
‘/
’ or space is added to the end if it
isn't already there.
Completion works anywhere in the line, not at just the end; completed text pushes the rest of the line to the right. Completion in the middle of a word often results in leftover characters to the right of the cursor that need to be deleted.
Commands and variables can be completed in much the same way. For example, typing
em[tab]
em
’ to
‘emacs
’ if
‘emacs
’ were the only command on your
system beginning with ‘em
’. Completion
can find a command in any directory in path
or if
given a full pathname.
Typing
echo $ar[tab]
$ar
’ to
‘$argv
’ if no other variable began with
‘ar
’.
The shell parses the input buffer to determine whether the word
you want to complete should be completed as a filename, command or variable.
The first word in the buffer and the first word following
‘;
’,
‘|
’,
‘|&
’,
‘&&
’, or
‘||
’ is considered to be a command. A
word beginning with ‘$
’ is considered
to be a variable. Anything else is a filename. An empty line is
“completed” as a filename.
You can list the possible completions of a word at any time by
typing ^D
to run the
delete-char-or-list-or-eof
editor command. The shell
lists the possible completions using the ls-F
builtin and reprints the prompt and unfinished command line, for
example:
> ls /usr/l[^D] lbin/ lib/ local/ lost+found/ > ls /usr/l
If the autolist
shell variable is set, the
shell lists the remaining choices (if any) whenever completion fails:
> set autolist > nm /usr/lib/libt[tab] libtermcap.a@ libtermlib.a@ > nm /usr/lib/libterm
If the autolist
shell variable is set to
‘ambiguous
’, choices are listed only
when completion fails and adds no new characters to the word being
completed.
A filename to be completed can contain variables, your own or
others' home directories abbreviated with
‘~
’ (see
Filename substitution) and
directory stack entries abbreviated with
‘=
’ (see
Directory stack
substitution (+)). For example,
> ls ~k[^D] kahn kas kellogg > ls ~ke[tab] > ls ~kellogg/
or
> set local = /usr/local > ls $lo[tab] > ls $local/[^D] bin/ etc/ lib/ man/ src/ > ls $local/
Note that variables can also be expanded explicitly with the
expand-variables
editor command.
delete-char-or-list-or-eof
lists at only
the end of the line; in the middle of a line it deletes the character under
the cursor and on an empty line it logs one out or, if the
ignoreeof
variable is set, does nothing.
M-^D
, bound to the editor command
list-choices
, lists completion possibilities
anywhere on a line, and list-choices
(or any one of
the related editor commands that do or don't delete, list and/or log out,
listed under delete-char-or-list-or-eof
) can be
bound to ^D
with the bindkey
builtin command if so desired.
The complete-word-fwd
and
complete-word-back
editor commands (not bound to any
keys by default) can be used to cycle up and down through the list of
possible completions, replacing the current word with the next or previous
word in the list.
The shell variable fignore
can be set to a
list of suffixes to be ignored by completion. Consider the following:
> ls Makefile condiments.h~ main.o side.c README main.c meal side.o condiments.h main.c~ > set fignore = (.o \~) > emacs ma[^D] main.c main.c~ main.o > emacs ma[tab] > emacs main.c
‘main.c~
’ and
‘main.o
’ are ignored by completion
(but not listing), because they end in suffixes in
fignore
. Note that a
‘\
’ was needed in front of
‘~
’ to prevent it from being expanded
to home
as described under
Filename substitution.
fignore
is ignored if only one completion is
possible.
If the complete
shell variable is set to
‘enhance
’, completion 1) ignores case
and 2) considers periods, hyphens and underscores
(‘.
’,
‘-
’, and
‘_
’) to be word separators and hyphens
and underscores to be equivalent. If you had the following files
comp.lang.c comp.lang.perl comp.std.c++ comp.lang.c++ comp.std.c
and typed
mail -f c.l.c[tab]
mail -f comp.lang.c
mail -f c.l.c[^D]
comp.lang.c
’ and
‘comp.lang.c++
’.
Typing
mail -f c..c++[^D]
comp.lang.c++
’ and
‘comp.std.c++
’.
Typing
rm a--file[^D]
A_silly_file a-hyphenated-file another_silly_file
would list all three files, because case is ignored and hyphens and underscores are equivalent. Periods, however, are not equivalent to hyphens or underscores.
If the complete
shell variable is set to
‘Enhance
’, completion ignores case and
differences between a hyphen and an underscore word separator only when the
user types a lowercase character or a hyphen. Entering an uppercase
character or an underscore will not match the corresponding lowercase
character or hyphen word separator.
Typing
rm a--file[^D]
rm A--file
A_silly_file
’ and typing
rm a__file[^D]
A_silly_file
’ and
‘another_silly_file
’ because the user
explicitly used an uppercase or an underscore character.
Completion and listing are affected by several other shell
variables: recexact
can be set to complete on the
shortest possible unique match, even if more typing might result in a longer
match:
> ls fodder foo food foonly > set recexact > rm fo[tab]
just beeps, because ‘fo
’
could expand to ‘fod
’ or
‘foo
’, but if we type another
‘o
’,
> rm foo[tab] > rm foo
the completion completes on
‘foo
’, even though
‘food
’ and
‘foonly
’ also match.
autoexpand
can be set to run the
expand-history
editor command before each completion
attempt, autocorrect
can be set to spelling-correct
the word to be completed (see
Spelling correction (+))
before each completion attempt and correct
can be
set to complete commands automatically after one hits return.
matchbeep
can be set to make completion beep or not
beep in a variety of situations, and nobeep
can be
set to never beep at all. nostat
can be set to a
list of directories and/or patterns that match directories to prevent the
completion mechanism from stat(2)ing those
directories. listmax
and
listmaxrows
can be set to limit the number of items
and rows (respectively) that are listed without asking first.
recognize_only_executables
can be set to make the
shell list only executables when listing commands, but it is quite slow.
Finally, the complete
builtin command can
be used to tell the shell how to complete words other than filenames,
commands and variables. Completion and listing do not work on glob-patterns
(see Filename substitution),
but the list-glob
and
expand-glob
editor commands perform equivalent
functions for glob-patterns.
The shell can sometimes correct the spelling of filenames, commands and variable names as well as completing and listing them.
Individual words can be spelling-corrected with the
spell-word
editor command (usually bound to
M-s
and M-S
) and the entire
input buffer with spell-line
(usually bound to
M-$
). The correct
shell
variable can be set to ‘cmd
’ to
correct the command name or ‘all
’ to
correct the entire line each time return is typed, and
autocorrect
can be set to correct the word to be
completed before each completion attempt.
When spelling correction is invoked in any of these ways and the shell thinks that any part of the command line is misspelled, it prompts with the corrected line:
> set correct = cmd > lz /usr/bin CORRECT>ls /usr/bin (y|n|e|a)?
One can answer ‘y
’ or space
to execute the corrected line, ‘e
’ to
leave the uncorrected command in the input buffer,
‘a
’ to abort the command as if
^C
had been hit, and anything else to execute the
original line unchanged.
Spelling correction recognizes user-defined completions (see the
complete
builtin command). If an input word in a
position for which a completion is defined resembles a word in the
completion list, spelling correction registers a misspelling and suggests
the latter word as a correction. However, if the input word does not match
any of the possible completions for that position, spelling correction does
not register a misspelling.
Like completion, spelling correction works anywhere in the line, pushing the rest of the line to the right and possibly leaving extra characters to the right of the cursor.
bindkey
lists key bindings and
bindkey -l
lists and briefly describes editor
commands. Only new or especially interesting editor commands are described
here. See emacs(1) and
vi(1) for descriptions of each editor's key
bindings.
The character or characters to which each command is bound by
default is given in parentheses.
^
character means a control
character and M-
character a
meta character, typed as
escape-
character (or
^
[character) on terminals
without a meta key. Case counts, but commands that are bound to letters by
default are bound to both lower- and uppercase letters for convenience.
Supported editor commands are:
backward-char
(^B
, left
)vimode
.backward-delete-word
(M-^H
, M-^?
)vimode
.backward-word
(M-b
, M-B
)vimode
.beginning-of-line
(^A
, home
)vimode
.capitalize-word
(M-c
, M-C
)vimode
.complete-word
(tab
)complete-word-back
(not bound)complete-word-fwd
, but steps up from the end
of the list.complete-word-fwd
(not bound)complete-word-raw
(^X-tab
)complete-word
, but ignores user-defined
completions.copy-prev-word
(M-^_
)insert-last-word
. Word boundary behavior
modified by vimode
.dabbrev-expand
(M-/
)dabbrev-expand
without any
intervening typing changes to the next previous word etc., skipping
identical matches much like
history-search-backward
does.delete-char
(not bound)delete-char-or-list-or-eof
. Cursor behavior
modified by vimode
.delete-char-or-eof
(not bound)delete-char
if there is a character under the
cursor or end-of-file
on an empty line. See also
delete-char-or-list-or-eof
. Cursor behavior
modified by vimode
.delete-char-or-list
(not bound)delete-char
if there is a character under the
cursor or list-choices
at the end of the line. See
also delete-char-or-list-or-eof
.delete-char-or-list-or-eof
(^D
)delete-char
if there is a character under the
cursor, list-choices
at the end of the line or
end-of-file
on an empty line. See also those three
commands, each of which does only a single action, and
delete-char-or-eof
,
delete-char-or-list
, and
list-or-eof
, each of which does a different two
out of the three.delete-word
(M-d
, M-D
)vimode
.down-history
(down
, ^N
)up-history
, but steps down, stopping at the
original input line.downcase-word
(M-l
, M-L
)vimode
.end-of-file
(not bound)ignoreeof
shell variable is set to prevent this.
See also delete-char-or-list-or-eof
.end-of-line
(^E
, end
)vimode
.expand-history
(M-space
)magic-space
,
toggle-literal-history
, and the
autoexpand
shell variable.expand-glob
(^X-*
)expand-line
(not bound)expand-history
, but expands history
substitutions in each word in the input buffer.expand-variables
(^X-$
)forward-char
(^F
, right
)vimode
.forward-word
(M-f
, M-F
)vimode
.history-search-backward
(M-p
, M-P
)*
’,
‘?
’,
‘[]
’, or
‘{}
’.
up-history
and
down-history
will proceed from the appropriate
point in the history list. Emacs mode only. See also
history-search-forward
and
i-search-back
.history-search-forward
(M-n
, M-N
)history-search-backward
, but searches
forward.i-search-back
(not bound)history-search-backward
,
copies the first match into the input buffer with the cursor positioned at
the end of the pattern, and prompts with
bck:
i-search-back
may be typed to continue
searching with the same pattern, wrapping around the history list if
necessary, (i-search-back
must be bound to a
single character for this to work) or one of the following special
characters may be typed:
^W
delete
(or any character bound to
backward-delete-char
)^G
escape
Any other character not bound to
self-insert-command
terminates the search,
leaving the current line in the input buffer, and is then interpreted as
normal input. In particular, a carriage return causes the current line
to be executed. See also i-search-fwd
and
history-search-backward
. Word boundary behavior
modified by vimode
.
i-search-fwd
(not bound)i-search-back
, but searches forward. Word
boundary behavior modified by vimode
.insert-last-word
(M-_
)!$
’) into the input buffer. See
also copy-prev-word
.list-choices
(M-^D
)delete-char-or-list-or-eof
and
list-choices-raw
.list-choices-raw
(^X-^D
)list-choices
, but ignores user-defined
completions.list-glob
(^X-g
, ^X-G
)ls-F
builtin) matches to the
glob-pattern (see Filename
substitution) to the left of the cursor.list-or-eof
(not bound)list-choices
or
end-of-file
on an empty line. See also
delete-char-or-list-or-eof
.magic-space
(not bound)expand-history
, and inserts a space.
magic-space
is designed to be bound to the space
bar, but is not bound by default.normalize-command
(^X-?
)PATH
and, if it
is found, replaces it with the full path to the executable. Special
characters are quoted. Aliases are expanded and quoted but commands within
aliases are not. This command is useful with commands that take commands
as arguments, e.g., ‘dbx
’ and
‘sh -x
’.normalize-path
(^X-n
, ^X-N
)expand
’ setting of the
symlinks
shell variable.overwrite-mode
(unbound)run-fg-editor
(M-^Z
)editors
shell variable. If
editors
is not set, then the file name portion of
the EDITOR
environment variable
(‘ed
’ if unset) and the
VISUAL
environment variable
(‘vi
’ if unset) will be used. If
such a job is found, it is restarted as if ‘fg
%job
’ had been typed. This is used to
toggle back and forth between an editor and the shell easily. Some people
bind this command to ^Z
so they can do this even
more easily.run-help
(M-h
, M-H
)run-help
is
designed for short help files. If the special alias
helpcommand
is defined, it is run with the command
name as a sole argument. Else, documentation should be in a file named
command.help, command.1,
command.6, command.8, or
command, which should be in one of the directories
listed in the HPATH
environment variable. If there
is more than one help file only the first is printed.self-insert-command
(text characters)inputmode
shell variable can be set to
‘insert
’ or
‘overwrite
’ to put the editor in
that mode at the beginning of each line. See also
overwrite-mode
.sequence-lead-in
(arrow prefix, meta prefix,
^X
)sequence-lead-in
and the whole
sequence to the command. All sequences beginning with a character bound to
sequence-lead-in
are effectively bound to
undefined-key
unless bound to another
command.spell-line
(M-$
)spell-word
, but ignores words whose first
character is one of ‘-
’,
‘!
’,
‘^
’, or
‘%
’, or which contain
‘\
’,
‘*
’, or
‘?
’, to avoid problems with
switches, substitutions and the like. See
Spelling correction
(+).spell-word
(M-s
, M-S
)toggle-literal-history
(M-r
, M-R
)expand-history
and the
autoexpand
shell variable.undefined-key
(any unbound key)up-history
(up
, ^P
)histlit
is set, uses the literal form of the
entry. May be repeated to step up through the history list, stopping at
the top.upcase-word
(M-u
, M-U
)vimode
.vi-beginning-of-next-word
(not bound)vimode
.vi-eword
(not bound)vimode
.vi-search-back
(?
)?
history-search-backward
), searches for it and
copies it into the input buffer. The bell rings if no match is found.
Hitting return ends the search and leaves the last match in the input
buffer. Hitting escape ends the search and executes the match.
vi
mode only.vi-search-fwd
(/
)vi-search-back
, but searches forward.which-command
(M-?
)which
(see the description of the builtin
command) on the first word of the input buffer.yank-pop
(M-y
)yank
or another
yank-pop
, replaces the yanked string with the next
previous string from the killring. This also has the effect of rotating
the killring, such that this string will be considered the most recently
killed by a later yank
command. Repeating
yank-pop
will cycle through the killring any
number of times.The shell splits input lines into words at blanks and tabs. The
special characters ‘&
’,
‘|
’,
‘;
’,
‘<
’,
‘>
’,
‘(
’, and
‘)
’, and the doubled characters
‘&&
’,
‘||
’,
‘<<
’, and
‘>>
’ are always separate words,
whether or not they are surrounded by whitespace.
When the shell's input is not a terminal, the character
‘#
’ is taken to begin a comment. Each
‘#
’ and the rest of the input line on
which it appears is discarded before further parsing.
A special character (including a blank or tab) may be prevented
from having its special meaning, and possibly made part of another word, by
preceding it with a backslash (‘\
’) or
enclosing it in single (‘'
’), double
(‘"
’), or backward
(‘`
’) quotes. When not otherwise
quoted a newline preceded by a ‘\
’ is
equivalent to a blank, but inside quotes this sequence results in a
newline.
Furthermore, all
Substitutions except
History substitution can be
prevented by enclosing the strings (or parts of strings) in which they
appear with single quotes or by quoting the crucial character(s) (e.g.,
‘$
’ or
‘`
’ for
Variable substitution or
Command substitution
respectively) with ‘\
’.
(Alias substitution is no
exception: quoting in any way any character of a word for which an
alias
has been defined prevents substitution of the
alias. The usual way of quoting an alias is to precede it with a backslash.)
History substitution is
prevented by backslashes but not by single quotes. Strings quoted with
double or backward quotes undergo
Variable substitution and
Command substitution, but
other substitutions are prevented.
Text inside single or double quotes becomes a single word (or part of one). Metacharacters in these strings, including blanks and tabs, do not form separate words. Only in one special case (see Command substitution) can a double-quoted string yield parts of more than one word; single-quoted strings never do. Backward quotes are special: they signal Command substitution, which may result in more than one word.
C-style escape sequences can be used in single quoted strings by
preceding the leading quote with ‘$
’.
(+) See Escape sequences (+)
for a complete list of recognized escape sequences.
Quoting complex strings, particularly strings which themselves contain quoting characters, can be confusing. Remember that quotes need not be used as they are in human writing! It may be easier to quote not an entire string, but only those parts of the string which need quoting, using different types of quoting to do so if appropriate.
The backslash_quote
shell variable can be
set to make backslashes always quote
‘\
’,
‘'
’, and
‘"
’ (+). This may make complex
quoting tasks easier, but it can cause syntax errors in
csh(1) scripts.
The following escape sequences are always recognized inside a
string constructed using ‘$''
’, and
optionally by the echo
builtin command as controlled
by the echo_style
shell variable.
Supported escape sequences are:
\a
\b
\c
c^c
’ in
stty(1). If c is a
backslash, it must be doubled.\e
\f
\n
\r
\t
\v
\\
\'
\"
\
nnn\x
nn\x{
nnnnnnnn}
\u
nnnn\U
nnnnnnnnThe implementations of ‘\x
’,
‘\u
’, and
‘\U
’ in other shells may take a
varying number of digits. It is often safest to use leading zeros to provide
the maximum expected number of digits.
We now describe the various transformations the shell performs on the input in the order in which they occur. We note in passing the data structures involved and the commands and variables which affect them. Remember that substitutions can be prevented by quoting as described under Lexical structure.
Each command, or “event”, input from the terminal is
saved in the history list. The previous command is always saved, and the
history
shell variable can be set to a number to
save that many commands. The histdup
shell variable
can be set to not save duplicate events or consecutive duplicate events.
Saved commands are numbered sequentially from 1 and stamped with
the time. It is not usually necessary to use event numbers, but the current
event number can be made part of the prompt by placing an
‘!
’ in the
prompt
shell variable.
By default history entries are displayed by printing each parsed
token separated by space; thus the redirection operator
‘>&!
’ will be displayed as
‘> & !
’. The
shell actually saves history in expanded and literal (unexpanded) forms. If
the histlit
shell variable is set, commands that
display and store history use the literal form.
The history
builtin command can print,
store in a file, restore and clear the history list at any time, and the
savehist
and histfile
shell
variables can be set to store the history list automatically on logout and
restore it on login.
History substitutions introduce words from the history list into the input stream, making it easy to repeat commands, repeat arguments of a previous command in the current command, or fix spelling mistakes in the previous command with little typing and a high degree of confidence.
History substitutions begin with the character
‘!
’. They may begin anywhere in the
input stream, but they do not nest. The
‘!
’ may be preceded by a
‘\
’ to prevent its special meaning;
for convenience, a ‘!
’ is passed
unchanged when it is followed by a blank, tab, newline,
‘=
’ or
‘(
’.
History substitutions also occur when an input line begins with
‘^
’; see
History substitution
abbreviation.
The characters used to signal history substitution
(‘!
’ and
‘^
’) can be changed by setting the
histchars
shell variable. Any input line which
contains a history substitution is printed before it is executed.
A history substitution may have an “event specification” (see History event specification), which indicates the event from which words are to be taken, a “word designator” (see History word designators), which selects particular words from the chosen event, and/or a “word modifier” (see History word modifiers), which manipulates the selected words.
A history event specification may be one of (with the history
substitution character ‘!
’ shown):
!
n!-
n!#
tcsh
allows 10 levels of recursion.
(+)!!
!-1
’.!
s!?
s?
?
’ can be omitted if it
is immediately followed by a newline.For example, consider this bit of someone's history list:
9 8:30 nroff -man wumpus.man 10 8:31 cp wumpus.man wumpus.man.old 11 8:36 vi wumpus.man 12 8:37 diff wumpus.man.old wumpus.man
The commands are shown with their event numbers and time stamps. The current event, which we haven't typed in yet, is event 13.
Typing
!11
!-2
Typing
!!
!!
’ can
be abbreviated ‘!
’ if it is followed by
‘:
’, which is described in
History word designators
and History word modifiers.
Typing
!n
n
’.
Typing
!?old?
old
’.
Without word designators or modifiers history references simply expand to the entire event, so we might type
!cp
cp
’ command (event 10) or
!!|more
diff
’ output in the previous
event, 12, scrolled off the top of the screen.
History references may be insulated from the surrounding text with
braces (‘{
’ and
‘}
’) if necessary. For example,
!vdoc
vdoc
’, and, in this example, not find
one, but
!{v}doc
vi
wumpus.mandoc
’ by matching event 11. Even in braces, history
substitutions do not nest.
(+) While csh(1) expands, for example,
!3d
d
’ appended to
it, tcsh
expands it to the last event beginning with
‘3d
’; only completely numeric arguments
are treated as event numbers. This makes it possible to recall events
beginning with numbers. To expand
!3d
!{3}d
To select words from an event we can follow the event
specification by a ‘:
’ and a
designator for the desired words. The words of an input line are numbered
from 0, the first (usually command) word being 0, the second word (first
argument) being 1, etc.
The basic word designators are, with columns for a leading
‘:
’ and a leading
‘!
’ (for the abbreviated word
designators - see
History substitution
abbreviation):
:Word | !Word | History word designator |
:0 |
The first (command) word. | |
: n |
The nth argument. | |
:^ |
!^ |
The first argument, equivalent to
‘:1 ’.
|
:$ |
!$ |
The last argument. |
:% |
!% |
The word matched by an
? s?
search.
|
: x- y |
A range of words. | |
:- y |
!- y |
Equivalent to
‘:0- y’.
|
:* |
!* |
Equivalent to ‘:^-$ ’, but returns
nothing if the event contains only 1 word.
|
: x* |
Equivalent to
‘: x-$ ’.
|
|
: x- |
Equivalent to
‘: x* ’,
but omitting the last word (‘$ ’).
|
|
:- |
Equivalent to ‘:0- ’; the command
and all arguments except the last argument. |
Selected words are inserted into the command line separated by single blanks.
For example, the ‘diff
’
command (event 12) in the history list example in
History event
specification,
diff wumpus.man.old
wumpus.man
diff !!:1.old !!:1
:1
’ to select the first argument
from the previous event) or
diff !-2:2 !-2:1
cp
’ command (event 10). If we didn't
care about the order of the ‘diff
’ we
might have typed
diff !-2:1-2
diff !-2:*
The ‘cp
’ command (event 10)
might have been typed
cp wumpus.man !#:1.old
#
’ to refer to the current event.
Typing
!n:- hurkle.man
nroff
’ command (event 9) to expand to
nroff -man hurkle.man
The ‘:
’ separating the event
specification from the word designator can be omitted if the argument
selector begins with a ‘^
’,
‘$
’,
‘%
’,
‘-
’, or
‘*
’.
For example, our ‘diff
’
command (event 12) might have been typed
diff !!^.old !!^
diff !!$.old !!$
!!
’ is abbreviated
‘!
’, an argument selector beginning with
‘-
’ will be interpreted as an event
specification.
A history reference may have a word designator but no event specification. It then references the previous command.
Continuing our ‘diff
’
command example (event 12), we could have typed simply
diff !^.old !^
diff !*
The word or words in a history reference can be edited, or
“modified”, by following it with one or more modifiers (with
the leading ‘:
’ shown), each preceded
by a ‘:
’:
:h
:t
:r
:e
:u
:l
:s/
l/
r/
/
’; a
‘\
’ can be used to quote the
delimiter inside l and r. The
character ‘&
’ in the
r is replaced by l;
‘\
’ also quotes
‘&
’. If l
is empty (‘’), the l from a previous
substitution or the s from a previous search or
event number in event specification is used. The trailing delimiter may be
omitted if it is immediately followed by a newline.:&
:g
:a
(+):a
’ and
‘:g
’ can be used together to apply a
modifier globally. With the ‘:s
’
modifier, only the patterns contained in the original word are
substituted, not patterns that contain any substitution result.:p
:q
:Q
:q
’ but in addition
preserve empty variables as a string containing a NUL. This is useful to
preserve positional arguments for example:
> set args=('arg 1' '' 'arg 3') > tcsh -f -c 'echo ${#argv}' $args:gQ 3
:x
:q
’, but break into words at
blanks, tabs and newlines.Modifiers are applied to only the first modifiable word (unless
‘:g
’ is used). It is an error for no
word to be modifiable.
For example, the ‘diff
’
command (event 12) in the history list example in
History event
specification,
diff wumpus.man.old
wumpus.man
diff wumpus.man.old
!#^:r
:r
’ to remove
‘.old
’ from the first argument on the
same line (‘!#^
’).
We could type
echo hello out there
echo !*:u
hello
’,
echo !*:au
HELLO
’,
or
echo !*:agu
We might follow
mail -s "I forgot my
password" rot
!:s/rot/root
root
’ (see
History word modifiers and
Spelling correction (+) for
different approaches).
(+) In csh(1) as such, only one
modifier may be applied to each history or variable expansion. In
tcsh
, more than one may be used, for example
% mv wumpus.man /usr/share/man/man1/wumpus.1 % man !$:t:r man wumpus
In csh(1), the result would be
wumpus.1:r
A substitution followed by a
‘:
’ may need to be insulated from it
with braces:
> mv a.out /usr/games/wumpus > setenv PATH !$:h:$PATH Bad ! modifier: $. > setenv PATH !{-2$:h}:$PATH setenv PATH /usr/games:/bin:/usr/bin:.
The first attempt would succeed in
csh(1) but fails in
tcsh
, because tcsh
expects
another modifier after the second ‘:
’
rather than ‘$
’.
There is a special abbreviation for substitutions;
‘^
’, when it is the first character on
an input line, is equivalent to
‘!:s^
’. Thus, we might follow the
example from History word
modifiers
mail -s "I forgot my
password" rot
^rot^root
!
’.
Finally, history can be accessed through the editor as well as
through the substitutions just described. The
up-history
and down-history
,
history-search-backward
and
history-search-forward
,
i-search-back
and
i-search-fwd
, vi-search-back
and vi-search-fwd
,
copy-prev-word
and
insert-last-word
editor commands search for events
in the history list and copy them into the input buffer. The
toggle-literal-history
editor command switches
between the expanded and literal forms of history lines in the input buffer.
expand-history
and
expand-line
expand history substitutions in the
current word and in the entire input buffer respectively.
The shell maintains a list of aliases which can be set, unset and
printed by the alias
and
unalias
commands. After a command line is parsed
into simple commands (see Commands) the
first word of each command, left-to-right, is checked to see if it has an
alias. If so, the first word is replaced by the alias. If the alias contains
a history reference, it undergoes
History substitution as
though the original command were the previous input line. If the alias does
not contain a history reference, the argument list is left untouched.
Thus if the alias for ‘ls
’
were
ls -l
ls /usr
ls -l /usr
If the alias for ‘lookup
’
were
grep !^ /etc/passwd
lookup bill
grep bill /etc/passwd
Aliases can be used to introduce parser metasyntax. For example,
alias print 'pr \!* |
lpr'
print
’) which
pr(1)s its arguments to the line printer.
Alias substitution is repeated until the first word of the command has no alias. If an alias substitution does not change the first word (as in the previous example) it is flagged to prevent a loop. Other loops are detected and cause an error.
Some aliases are referred to by the shell; see Special aliases (+).
The shell maintains a list of variables, each of which has as
value a list of zero or more words. The values of shell variables can be
displayed and changed with the set
and
unset
commands. The system maintains its own list of
“environment” variables. These can be displayed and changed
with printenv
, setenv
, and
unsetenv
.
(+) Variables may be made read-only with
set -r
set -r
Some variables are set by the shell or referred to by it. For
instance, the argv
variable is an image of the
shell's argument list, and words of this variable's value are referred to in
special ways. Some of the variables referred to by the shell are toggles;
the shell does not care what their value is, only whether they are set or
not. For instance, the verbose
variable is a toggle
which causes command input to be echoed. The -v
command line option sets this variable.
Special shell variables
lists all variables which are referred to by the shell.
Other operations treat variables numerically. The
‘@
’ command permits numeric
calculations to be performed and the result assigned to a variable. Variable
values are, however, always represented as (zero or more) strings. For the
purposes of numeric operations, the null string is considered to be zero,
and the second and subsequent words of multi-word values are ignored.
After the input line is aliased and parsed, and before
each command is executed, variable substitution is performed keyed by
‘$
’ characters. This expansion can be
prevented by preceding the ‘$
’ with a
‘\
’ except within
‘"
’ pairs where it
always occurs, and
within ‘'
’ pairs where it
never
occurs. Strings quoted by ‘`
’ are
interpreted later (see Command
substitution) so ‘$
’ substitution
does not occur there until later, if at all. A
‘$
’ is passed unchanged if followed by
a blank, tab, or end-of-line.
Input/output redirections are recognized before variable expansion, and are variable expanded separately. Otherwise, the command name and entire argument list are expanded together. It is thus possible for the first (command) word (to this point) to generate more than one word, the first of which becomes the command name, and the rest of which become arguments.
Unless enclosed in ‘"
’
or given the ‘:q
’ modifier the results
of variable substitution may eventually be command and filename substituted.
Within ‘"
’, a variable whose
value consists of multiple words expands to a (portion of a) single word,
with the words of the variable's value separated by blanks. When the
‘:q
’ modifier is applied to a
substitution the variable will expand to multiple words with each word
separated by a blank and quoted to prevent later command or filename
substitution.
The editor command expand-variables
,
normally bound to ^X-$
, can be used to interactively
expand individual variables.
The following metasequences are provided for introducing variable values into the shell input:
$
name${
name}
$
name[
selector]
${
name[
selector]}
$
’ substitution and
may consist of a single number or two numbers separated by a
‘-
’. The first word of a variable's
value is numbered ‘1
’. If the first
number of a range is omitted it defaults to
‘1
’. If the last member of a range
is omitted it defaults to
‘$#name
’. The
selector ‘*
’
selects all words. It is not an error for a range to be empty if the
second argument is omitted or in range.
$0
$
number${
number}
$argv[number]
’.
$*
$argv
’, which is
equivalent to ‘$argv[*]
’.Except as noted, it is an error to reference a variable which is not set.
The ‘:
’ modifiers described
under History word
modifiers, except for ‘:p
’, can be
applied to the substitutions above. More than one may be used. (+) Braces
may be needed to insulate a variable substitution from a literal
‘:
’ just as with
History word modifiers; any
modifiers must appear within the braces.
The following substitutions cannot be modified with
‘:
’ modifiers:
$?
name${?
name}
1
’ if
name is set,
‘0
’ if it is not.
$?0
1
’ if the current input
filename is known, ‘0
’ if it is not.
Always ‘0
’ in interactive shells.
$#
name${#
name}
$#
$#argv
’. (+)
$%
name${%
name}
$%
number${%
number}
$argv[number]
’.
(+)
$?
$status
’. (+)
$$
$!
$_
$<
$<
’, as if it were equivalent to
‘$<:q
’,
tcsh
does not. Furthermore, when
tcsh
is waiting for a line to be typed the user
may type an interrupt to interrupt the sequence into which the line is to
be substituted, but csh(1) does not allow
this.
$?<
The remaining substitutions are applied selectively to the arguments of builtin commands. This means that portions of expressions which are not evaluated are not subjected to these expansions. For commands which are not internal to the shell, the command name is substituted separately from the argument list. This occurs very late, after input-output redirection is performed, and in a child of the main shell.
Command substitution is indicated by a command enclosed in
‘`
’. The output from such a command is
broken into separate words at blanks, tabs and newlines, and null words are
discarded. The output is variable and command substituted and put in place
of the original string.
Command substitutions inside double quotes
(‘"
’) retain blanks and tabs;
only newlines force new words. The single final newline does not force a new
word in any case. It is thus possible for a command substitution to yield
only part of a word, even if the command outputs a complete line.
By default, the shell since version 6.12 replaces all newline and
carriage return characters in the command by spaces. If this is switched off
by unsetting csubstnonl
, newlines separate commands
as usual.
If a word contains any of the characters
‘*
’,
‘?
’,
‘[
’, or
‘{
’ or begins with the character
‘~
’ it is a candidate for filename
substitution, also known as “globbing”. This word is then
regarded as a pattern (“glob-pattern”), and replaced with an
alphabetically sorted list of file names which match the pattern.
In matching filenames, the character
‘.
’ at the beginning of a filename or
immediately following a ‘/
’, as well
as the character ‘/
’ must be matched
explicitly (unless either globdot
or
globstar
or both are set (+)). The character
‘*
’ matches any string of characters,
including the null string. The character
‘?
’ matches any single character. The
sequence ‘[...]
’ matches any one of
the characters enclosed. Within
‘[...]
’, a pair of characters
separated by ‘-
’ matches any character
lexically between the two.
(+) Some glob-patterns can be negated: The sequence
‘[^...]
’ matches any single character
not specified by the characters and/or ranges of
characters in the braces.
An entire glob-pattern can also be negated with
‘^
’:
> echo * bang crash crunch ouch > echo ^cr* bang ouch
Glob-patterns which do not use
‘?
’,
‘*
’, or
‘[]
’, or which use
‘{}
’ or
‘~
’ (below) are not negated
correctly.
The metanotation ‘a{b,c,d}e
’
is a shorthand for ‘abe ace ade
’.
Left-to-right order is preserved:
/usr/source/s1/{oldls,ls}.c
/usr/source/s1/oldls.c
/usr/source/s1/ls.c
../{memo,*box}
../memo ../box ../mbox
memo
’ was not sorted with the
results of matching ‘*box
’.) It is not
an error when this construct expands to files which do not exist, but it is
possible to get an error from a command to which the expanded list is passed.
This construct may be nested. As a special case the words
‘{
’,
‘}
’, and
‘{}
’ are passed undisturbed.
The character ‘~
’ at the
beginning of a filename refers to home directories. Standing alone, i.e.,
‘~
’, it expands to the invoker's home
directory as reflected in the value of the home
shell variable. When followed by a name consisting of letters, digits and
‘-
’ characters the shell searches for
a user with that name and substitutes their home directory; thus
~ken
/usr/ken
~ken/chmach
/usr/ken/chmach
~
’ is followed by a
character other than a letter or ‘/
’ or
appears elsewhere than at the beginning of a word, it is left undisturbed. A
command like
setenv MANPATH
/usr/share/man:/usr/local/share/man:~/lib/man
It is an error for a glob-pattern containing
‘*
’,
‘?
’,
‘[
’, or
‘~
’, with or without
‘^
’, not to match any files. However,
only one pattern in a list of glob-patterns must match a file (so that,
e.g.,
rm *.a *.c *.o
.a
’,
‘.c
’, or
‘.o
’), and if the
nonomatch
shell variable is set a pattern (or list of
patterns) which matches nothing is left unchanged rather than causing an
error.
The globstar
shell variable can be set to
allow ‘**
’ or
‘***
’ as a file glob pattern that
matches any string of characters including
‘/
’, recursively traversing any
existing sub-directories. For example,
ls **.c
ls
/usr/include/**/time.h
time.h
’ in the
/usr/include directory tree;
ls /usr/include/**time.h
time.h
’; and
ls
/usr/include/**time**.h
time
’ either
in a subdirectory name or in the filename itself. To prevent problems with
recursion, the ‘**
’ glob-pattern will
not descend into a symbolic link containing a directory. To override this, use
‘***
’ (+)
The noglob
shell variable can be set to
prevent filename substitution, and the expand-glob
editor command, normally bound to ^X-*
, can be used
to interactively expand individual filename substitutions.
The directory stack is a list of directories, numbered from zero,
used by the pushd
, popd
, and
dirs
builtin commands. dirs
can print, store in a file, restore and clear the directory stack at any
time, and the savedirs
and
dirsfile
shell variables can be set to store the
directory stack automatically on logout and restore it on login. The
dirstack
shell variable can be examined to see the
directory stack and set to put arbitrary directories into the directory
stack.
The character ‘=
’ followed
by one or more digits expands to an entry in the directory stack. The
special case ‘=-
’ expands to the last
directory in the stack. For example,
> dirs -v 0 /usr/bin 1 /usr/spool/uucp 2 /usr/accts/sys > echo =1 /usr/spool/uucp > echo =0/calendar /usr/bin/calendar > echo =- /usr/accts/sys
The noglob
and
nonomatch
shell variables and the
expand-glob
editor command apply to directory stack
as well as filename substitutions.
There are several more transformations involving filenames, not
strictly related to the above but mentioned here for completeness.
Any filename
may be expanded to a full path when the symlinks
variable is set to ‘expand
’. Quoting
prevents this expansion, and the normalize-path
editor command does it on demand. The
normalize-command
editor command expands commands in
PATH
into full paths on demand. Finally,
cd
and pushd
interpret
‘-
’ as the old working directory
(equivalent to the shell variable owd
). This is not
a substitution at all, but an abbreviation recognized by only those
commands. Nonetheless, it too can be prevented by quoting.
The next three sections describe how the shell executes commands and deals with their input and output.
A simple command is a sequence of words, the first of which
specifies the command to be executed. A series of simple commands joined by
‘|
’ characters forms a pipeline. The
output of each command in a pipeline is connected to the input of the
next.
Simple commands and pipelines may be joined into sequences with
‘;
’, and will be executed
sequentially. Commands and pipelines can also be joined into sequences with
‘||
’ or
‘&&
’, indicating, as in the C
language, that the second is to be executed only if the first fails or
succeeds respectively.
A simple command, pipeline or sequence may be placed in
parentheses (‘(
’ and
‘)
’) to form a simple command, which
may in turn be a component of a pipeline or sequence. A command, pipeline or
sequence can be executed without waiting for it to terminate by following it
with an ‘&
’.
Builtin commands are executed within the shell. If any component of a pipeline except the last is a builtin command, the pipeline is executed in a subshell.
Parenthesized commands are always executed in a subshell.
(cd; pwd); pwd
thus prints the home
directory, leaving
you where you were (printing this after the home directory), while
cd; pwd
leaves you in the home
directory.
Parenthesized commands are most often used to prevent
cd
from affecting the current shell.
When a command to be executed is found not to be a builtin command
the shell attempts to execute the command via
execve(2). Each word in the variable
path
names a directory in which the shell will look
for the command. If the shell is not given a -f
option, the shell hashes the names in these directories into an internal
table so that it will try an execve(2) in
only a directory where there is a possibility that the command resides
there. This greatly speeds command location when a large number of
directories are present in the search path. This hashing mechanism is not
used:
unhash
.-f
argument.path
which does
not begin with a ‘/
’./
’.In the above four cases the shell concatenates each component of the path vector with the given command name to form a path name of a file which it then attempts to execute it. If execution is successful, the search stops.
If the file has execute permissions but is not an executable to
the system (i.e., it is neither an executable binary nor a script that
specifies its interpreter), then it is assumed to be a file containing shell
commands and a new shell is spawned to read it. The
shell
special alias may be set to specify an
interpreter other than the shell itself.
On systems which do not understand the
‘#!
’ script interpreter convention the
shell may be compiled to emulate it; see the version
shell variable. If so, the shell checks the first line of the file to see if
it is of the form
#!interpreter
arg ...
The standard input and standard output of a command may be redirected with the following syntax:
<
name<<
word\
’,
‘"
’,
‘'
’, or
‘`
’ appears in
word variable and command substitution is performed
on the intervening lines, allowing
‘\
’ to quote
‘$
’,
‘\
’, and
‘`
’. Commands which are substituted
have all blanks, tabs, and newlines preserved, except for the final
newline which is dropped. The resultant text is placed in an anonymous
temporary file which is given to the command as standard input.
>
name>!
name>&
name>&!
nameIf the shell variable noclobber
is
set, then the file must not exist or be a character special file (e.g.,
a terminal or /dev/null) or an error results.
This helps prevent accidental destruction of files. In this case the
‘!
’ forms can be used to suppress
this check. If ‘notempty
’ is given
in noclobber
,
‘>
’ is allowed on empty files;
if ‘ask
’ is given in
noclobber
, an interactive confirmation is
presented, rather than an error.
The forms involving
‘&
’ route the diagnostic
output into the specified file as well as the standard output.
name is expanded in the same way as
‘<
’ input filenames are.
>>
name>>&
name>>!
name>>&!
name>
’, but appends output to
the end of name. If the shell variable
noclobber
is set, then it is an error for the file
not to exist, unless one of the
‘!
’ forms is given.A command receives the environment in which the shell was invoked
as modified by the input-output parameters and the presence of the command
in a pipeline. Thus, unlike some previous shells, commands run from a file
of shell commands have no access to the text of the commands by default;
rather they receive the original standard input of the shell. The
‘<<
’ mechanism should be used to
present inline data. This permits shell command scripts to function as
components of pipelines and allows the shell to block read its input. Note
that the default standard input for a command run detached is
not the empty file /dev/null, but
the original standard input of the shell. If this is a terminal and if the
process attempts to read from the terminal, then the process will block and
the user will be notified (see Jobs).
Diagnostic output may be directed through a pipe with the standard
output. Simply use the form ‘|&
’
rather than just ‘|
’.
The shell cannot presently redirect diagnostic output without also redirecting standard output, but
( command
>
output-file )
>&
error-file
Having described how the shell accepts, parses and executes command lines, we now turn to a variety of its useful features.
The shell contains a number of commands which can be used to regulate the flow of control in command files (shell scripts) and (in limited but useful ways) from terminal input. These commands all operate by forcing the shell to reread or skip in its input and, due to the implementation, restrict the placement of some of the commands.
The foreach
,
switch
, and while
statements, as well as the if ... then ... else
form
of the if
statement, require that the major keywords
appear in a single simple command on an input line as shown below.
If the shell's input is not seekable, the shell buffers up input
whenever a loop is being read and performs seeks in this internal buffer to
accomplish the rereading implied by the loop. (To the extent that this
allows, backward goto
s will succeed on non-seekable
inputs.)
The if
, while
, and
exit
builtin commands use expressions with a common
syntax. The expressions can include any of the operators described in the
next three sections. Note that the @
builtin command
has its own separate syntax.
These operators are similar to those of C and have the same precedence.
The operators, in descending precedence, with equivalent precedence per line, are:
( |
) |
||
~ |
|||
! |
|||
* |
/ |
% |
|
+ |
- |
||
<< |
>> |
||
<= |
>= |
< |
> |
== |
!= |
=~ |
!~ |
& |
|||
^ |
|||
| |
|||
&& |
|||
|| |
The ‘==
’
‘!=
’
‘=~
’ and
‘!~
’ operators compare their arguments
as strings; all others operate on numbers. The operators
‘=~
’ and
‘!~
’ are like
‘==
’ and
‘!=
’ except that the right hand side
is a glob-pattern (see Filename
substitution) against which the left hand operand is matched. This
reduces the need for use of the switch
builtin
command in shell scripts when all that is really needed is pattern
matching.
Null or missing arguments are considered
‘0
’. The results of all expressions
are strings, which represent decimal numbers. It is important to note that
no two components of an expression can appear in the same word; except when
adjacent to components of expressions which are syntactically significant to
the parser (‘&
’,
‘|
’,
‘<
’,
‘>
’,
‘(
’,
‘)
’) they should be surrounded by
spaces.
Commands can be executed in expressions and their exit status
returned by enclosing them in braces
(‘{
’ and
‘}
’). Remember that the braces should
be separated from the words of the command by spaces. Command executions
succeed, returning true, i.e., ‘1
’, if
the command exits with status 0, otherwise they fail, returning false, i.e.,
‘0
’. If more detailed status
information is required then the command should be executed outside of an
expression and the status
shell variable
examined.
Some of these operators perform true/false tests on files and
related objects. They are of the form
-
op file, where
-
op is one of:
-op
-r
-w
-x
-X
-X
ls
’ and ‘-X ls-F
’ are
generally true, but ‘-X /bin/ls
’ is
not. (+)-e
-o
-z
-s
-f
-d
-l
-b
-c
-p
-S
-u
-g
-k
-t
-R
-L
file is command and filename expanded and
then tested to see if it has the specified relationship to the real user. If
file does not exist or is inaccessible or, for the
operators indicated by ‘*’, if the specified file type does
not exist on the current system, then all inquiries return false, i.e.,
‘0
’.
These operators may be combined for conciseness:
-
xy
file
-
x
file &&
-
y file
-fx
’ is true (returns
‘1
’) for plain executable files, but not
for directories.
-L
may be used in a multiple-operator test
to apply subsequent operators to a symbolic link rather than to the file to
which the link points. For example, -lLo
is true for
links owned by the invoking user. -Lr
,
-Lw
, and -Lx
are always true
for links and false for non-links. -L
has a
different meaning when it is the last operator in a multiple-operator test;
see below.
It is possible but not useful, and sometimes misleading, to
combine operators which expect file to be a file with
operators which do not (e.g., -X
and
-t
). Following -L
with a
non-file operator can lead to particularly strange results.
Other operators return other information, i.e., not just
‘0
’ or
‘1
’. (+) They have the same format as
before; -
op may be one of:
-op
-A
-A:
A
’, but in timestamp format,
e.g., ‘Fri May 14 16:36:10 1993’.-M
-M:
-M
, but in timestamp format.-C
-C:
-C
, but in timestamp format.-D
-I
-F
-f
ile identifier, in the form
device:inode.-L
-N
-P
-P:
-P
, with leading zero.-P
mode-P
file &
mode
-P22
file
’ returns ‘22’ if
file is writable by group and other,
‘20’ if by group only, and ‘0’ if by
neither.-P
mode:
-P
mode, with leading
zero.-U
-U:
-G
-G:
-Z
Only one of these operators may appear in a multiple-operator
test, and it must be the last. Note that
‘L
’ has a different meaning at the end
of and elsewhere in a multiple-operator test. Because ‘0’ is a
valid return value for many of these operators, they do not return
‘0’ when they fail: most return ‘-1’, and
‘F
’ returns
‘:
’.
If the shell is compiled with POSIX defined (see the
version
shell variable), the result of a file
inquiry is based on the permission bits of the file and not on the result of
the access(2) system call. For example,
if one tests a file with -w
whose permissions would
ordinarily allow writing but which is on a file system mounted read-only,
the test will succeed in a POSIX shell but fail in a non-POSIX shell.
File inquiry operators can also be evaluated with the
filetest
builtin command (+).
The shell associates a job with each
pipeline. It keeps a table of current jobs, printed by the
jobs
command, and assigns them small integer
numbers. When a job is started asynchronously with
‘&
’, the shell prints a line which
looks like
[1] 1234
indicating that the job which was started asynchronously was job number 1 and had one (top-level) process, whose process id was 1234.
If you are running a job and wish to do something else you may hit
the suspend key (usually ^Z
), which sends a STOP
signal to the current job. The shell will then normally indicate that the
job has been
Suspended
listjobs
shell variable
is set, all jobs will be listed like the jobs
builtin
command; if it is set to ‘long
’ the
listing will be in long format, like ‘jobs
-l
’. You can then manipulate the state of the suspended job. You
can put it in the “background” with the
bg
command or run some other commands and eventually
bring the job back into the “foreground” with
fg
. (See also the
run-fg-editor
editor command.) A
^Z
takes effect immediately and is like an interrupt
in that pending output and unread input are discarded when it is typed. The
wait
builtin command causes the shell to wait for all
background jobs to complete.
The ^]
key sends a delayed suspend signal,
which does not generate a STOP signal until a program attempts to
read(2) it, to the current job. This can
usefully be typed ahead when you have prepared some commands for a job which
you wish to stop after it has read them. The ^Y
key
performs this function in csh(1); in
tcsh
, ^Y
is an editing
command. (+)
A job being run in the background stops if it tries to read from the terminal. Background jobs are normally allowed to produce output, but this can be disabled by giving the command
stty tostop
There are several ways to refer to jobs in the shell. The
character ‘%
’ introduces a job name.
If you wish to refer to job number 1, you can name it as
%1
%1
fg %1
%1 &
bg %1
%ex
ex
’. It is also possible to type
%?string
The shell maintains a notion of the current and previous jobs. In
output pertaining to jobs, the current job is marked with a
‘+
’ and the previous job with a
‘-
’. The abbreviations
‘%+
’,
‘%
’, and (by analogy with the syntax
of the history
mechanism)
‘%%
’ all refer to the current job, and
‘%-
’ refers to the previous job.
The job control mechanism requires that the
stty(1) option
‘new
’ be set on some systems. It is an
artifact from a “new” implementation of the tty driver which
allows generation of interrupt characters from the keyboard to tell jobs to
stop. See stty(1) and the
setty
builtin command for details on setting options
in the new tty driver.
The shell learns immediately whenever a process changes state. It
normally informs you whenever a job becomes blocked so that no further
progress is possible, but only right before it prints a prompt. This is done
so that it does not otherwise disturb your work. If, however, you set the
shell variable notify
, the shell will notify you
immediately of changes of status in background jobs. There is also a builtin
command notify
which marks a single process so that
its status changes will be immediately reported. By default
notify
marks the current process; simply enter
notify
When you try to leave the shell while jobs are stopped, you will be warned that
There are suspended
jobs.
You may use the jobs
command to see what
they are. If you do this or immediately try to exit again, the shell will
not warn you a second time, and the suspended jobs will be terminated.
There are various ways to run commands and take other actions automatically at various times in the “life cycle” of the shell. They are summarized here, and described in detail under the appropriate Builtin commands, Special shell variables, and Special aliases (+).
The sched
builtin command puts commands in
a scheduled-event list, to be executed by the shell at a given time.
The beepcmd
,
cwdcmd
, jobcmd
,
periodic
, precmd
, and
postcmd
Special aliases (+) can be
set, respectively, to execute commands: when the shell wants to ring the
bell, when the working directory changes, when a job is started or is
brought into the foreground, every tperiod
minutes,
before each prompt, and before each command gets executed.
The autologout
shell variable can be set
to log out or lock the shell after a given number of minutes of
inactivity.
The mail
shell variable can be set to
check for new mail periodically.
The printexitvalue
shell variable can be
set to print the exit status of commands which exit with a status other than
zero.
The rmstar
shell variable can be set to
ask the user, when
rm *
The time
shell variable can be set to
execute the time
builtin command after the
completion of any process that takes more than a given number of CPU
seconds.
The watch
and who
shell variables can be set to report when selected users log in or out, and
the log
builtin command reports on those users at
any time.
The shell is eight bit clean (if so compiled; see the
version
shell variable) and thus supports character
sets needing this capability. NLS support differs depending on whether or
not the shell was compiled to use the system's NLS (again, see
version
). In either case, 7-bit ASCII is the default
character code (e.g., the classification of which characters are printable)
and sorting, and changing the LANG
or
LC_CTYPE
environment variables causes a check for
possible changes in these respects.
When using the system's NLS, the
setlocale(3) function is called to
determine appropriate character code/classification and sorting (e.g.,
‘en_CA.UTF-8’ would yield ‘UTF-8’ as the
character code). This function typically examines the
LANG
and LC_CTYPE
environment variables; refer to the system documentation for further
details. When not using the system's NLS, the shell simulates it by assuming
that the ISO 8859-1 character set is used whenever either of the
LANG
and LC_CTYPE
variables
are set, regardless of their values. Sorting is not affected for the
simulated NLS.
In addition, with both real and simulated NLS, all printable
characters in the range \200-\377, i.e., those that have
M-
char bindings, are
automatically rebound to self-insert-command
. The
corresponding binding for the
escape-char sequence, if any,
is left alone. These characters are not rebound if the
NOREBIND
environment variable is set. This may be
useful for the simulated NLS or a primitive real NLS which assumes full ISO
8859-1. Otherwise, all M-
char
bindings in the range \240-\377 are effectively undone. Explicitly rebinding
the relevant keys with bindkey
is of course still
possible.
Unknown characters (i.e., those that are neither printable nor control characters) are printed in the format \nnn. If the tty is not in 8 bit mode, other 8 bit characters are printed by converting them to ASCII and using standout mode. The shell never changes the 7/8 bit mode of the tty and tracks user-initiated changes of 7/8 bit mode. NLS users (or, for that matter, those who want to use a meta key) may need to explicitly set the tty in 8 bit mode through the appropriate stty(1) command in, e.g., the ~/.login file.
A number of new builtin commands are provided to support features in particular operating systems. All are described in detail in the Builtin commands section.
On systems that support TCF (aix-ibm370, aix-ps2),
getspath
and setspath
get
and set the system execution path, getxvers
and
setxvers
get and set the experimental version prefix
and migrate
migrates processes between sites. The
jobs
builtin prints the site on which each job is
executing.
Under BS2000, bs2cmd
executes commands of
the underlying BS2000/OSD operating system.
Under Domain/OS, inlib
adds shared
libraries to the current environment, rootnode
changes the rootnode and ver
changes the
systype.
Under Mach, setpath
is equivalent to
Mach's setpath(1).
Under Masscomp/RTU and Harris CX/UX,
universe
sets the universe.
Under Harris CX/UX, ucb
or
att
runs a command under the specified universe.
Under Convex/OS, warp
prints or sets the
universe.
The VENDOR
,
OSTYPE
, and MACHTYPE
environment variables indicate respectively the vendor, operating system and
machine type (microprocessor class or machine model) of the system on which
the shell thinks it is running. These are particularly useful when sharing
one's home directory between several types of machines; one can, for
example,
set path = (~/bin.$MACHTYPE /usr/ucb /bin /usr/bin .)
in one's ~/.login and put executables compiled for each machine in the appropriate directory.
The version
shell variable indicates what
options were chosen when the shell was compiled.
Note also the newgrp
builtin, the
afsuser
and echo_style
shell
variables and the system-dependent locations of the shell's input files (see
FILES).
Login shells ignore interrupts when reading the file
~/.logout. The shell ignores quit signals unless
started with -q
. Login shells catch the terminate
signal, but non-login shells inherit the terminate behavior from their
parents. Other signals have the values which the shell inherited from its
parent.
In shell scripts, the shell's handling of interrupt and terminate
signals can be controlled with onintr
, and its
handling of hangups can be controlled with hup
and
nohup
.
The shell exits on a hangup (see also the
logout
shell variable). By default, the shell's
children do too, but the shell does not send them a hangup when it exits.
hup
arranges for the shell to send a hangup to a
child when it exits, and nohup
sets a child to
ignore hangups.
The shell uses three different sets of terminal
(“tty”) modes: ‘edit’, used when editing;
‘quote’, used when quoting literal characters; and
‘execute’, used when executing commands. The shell holds some
settings in each mode constant, so commands which leave the tty in a
confused state do not interfere with the shell. The shell also matches
changes in the speed and padding of the tty. The list of tty modes that are
kept constant can be examined and modified with the
setty
builtin. Note that although the editor uses
CBREAK mode (or its equivalent), it takes typed-ahead characters anyway.
The echotc
, settc
,
and telltc
commands can be used to manipulate and
debug terminal capabilities from the command line.
On systems that support SIGWINCH or SIGWINDOW, the shell adapts to
window resizing automatically and adjusts the environment variables
LINES
and COLUMNS
if set. If
the environment variable TERMCAP
contains
‘li#
’ and
‘co#
’ fields, the shell adjusts them
to reflect the new window size.
The next sections of this manual describe all of the available Builtin commands, Special aliases (+), and Special shell variables.
%
jobfg
builtin command.%
job
&
bg
builtin command.:
@
@
name =
expr@
name[
index]
=
expr@
name++|--
@
name[
index]++|--
The second form assigns the value of expr to name.
The third form assigns the value of expr to the index'th component of name; both name and its index'th component must already exist.
expr may contain the operators
‘*
’,
‘+
’, etc., as in C. If
expr contains
‘<
’,
‘>
’,
‘&
’, or
‘|
’ then at least that part of
expr must be placed within
(‘’ and
‘
’). Note that the syntax of
expr has nothing to do with that described under
Expressions.
The fourth and fifth forms increment
(‘++
’) or decrement
(‘--
’) name
or its index'th component.
The space between ‘@
’
and name is required. The spaces between
name and ‘=
’
and between ‘=
’ and
expr are optional. Components of
expr must be separated by spaces.
alias
[name [wordlist]]With name, prints the alias for name.
With name and wordlist, assigns wordlist as the alias of name. wordlist is command and filename substituted.
name may not be
‘alias
’ or
‘unalias
’. See also the
unalias
builtin command.
alloc
bg
[%
job
...]
’,
‘%
’,
‘+
’, or
‘-
’ as described under
Jobs.bindkey
[-l
|-d
|-e
|-v
|-u
]
(+)bindkey
[-a
] [-b
]
[-k
] [-r
]
[--
] key
(+)bindkey
[-a
] [-b
]
[-k
]
[-c
|-s
]
[--
] key command
(+)The second form lists the editor command to which key is bound.
The third form binds the editor command command to key.
Supported bindkey
options:
bindkey
description-a
vimode
command mode.-b
^
character
(e.g., ^A
) or
C-
character (e.g.,
C-A
), a meta character written
M-
character (e.g.,
M-A
), a function key written
F-
string (e.g.,
F-string
), or an extended prefix key written
X-
character (e.g.,
X-A
).-c
-d
-e
and -v
.-e
vimode
.-k
-l
-r
bindkey -r
’ does
not bind key to
self-insert-command
, it unbinds
key completely.-s
-u
(or any invalid option)-v
vimode
.--
-
’.key may be a single character or a
string. If a command is bound to a string, the first character of the
string is bound to sequence-lead-in
and the
entire string is bound to the command.
Control characters in key can be literal
(they can be typed by preceding them with the editor command
quoted-insert
, normally bound to
^V
) or written caret-character style, e.g.,
^A
. Delete is written ^?
(caret-question mark). key and
command can contain backslashed escape sequences
(in the style of System V echo(1)) as
follows:
\a
\b
\e
\f
\n
\r
\t
\v
\
nnn‘\
’ nullifies the
special meaning of the following character, if it has any, notably
‘\
’ and
‘^
’.
bs2cmd
bs2000-command (+)break
end
of the
nearest enclosing foreach
or
while
. The remaining commands on the current line
are executed. Multi-level breaks are thus possible by writing them all on
one line.breaksw
switch
, resuming after the
endsw
.builtins
(+)bye
(+)logout
builtin command.
Available only if the shell was so compiled; see the
version
shell variable.case
label:
switch
statement as discussed
below.cd
[-p
] [-l
]
[-n
|-v
]
[--
] [name]home
, unless the cdtohome
variable is not set, in which case a name is
required. If name is
‘-
’ it is interpreted as the
previous working directory (see
Other substitutions
(+)). (+) If name is not a subdirectory of the
current directory (and does not begin with
‘/
’,
‘./
’ or
‘../
’), each component of the
variable cdpath
is checked to see if it has a
subdirectory name. Finally, if all else fails but
name is a shell variable whose value begins with
‘/
’ or
‘.
’, then this is tried to see if it
is a directory, and the -p
option is implied.
With -p
, prints the final directory
stack, just like dirs
. The
-l
, -n
, and
-v
flags have the same effect on
cd
as on dirs
, and they
imply -p
(+). Using --
forces a break from option processing so the next word is taken as the
directory name even if it begins with
‘-
’ (+).
See also the implicitcd
and
cdtohome
shell variables.
chdir
cd
builtin command.complete
[command
[word/
pattern/
list[:
select]/
[[suffix]/
]
...]] (+)With command, lists completions for command.
With command and word ..., defines completions.
command may be a full command name or a
glob-pattern (see Filename
substitution). It can begin with
‘-
’ to indicate that completion
should be used only when command
is
ambiguous.
word specifies which word relative to the current word is to be completed, and may be one of the following:
c
C
c
’, but includes
pattern when completing the current word.n
N
n
’, but must match the
beginning of the word two before the current word.p
list, the list of possible completions, may be one of the following:
a
b
c
C
d
D
e
f
F
g
j
l
n
s
S
t
T
v
u
x
n
’, but prints
select when list-choices
is used.X
$
var(...)
`...`
select is an optional glob-pattern. If
given, words from only list that match
select are considered and the
fignore
shell variable is ignored. The
list types
‘$var
’,
‘(...)
’, and
‘`...`
’ may not have a
select pattern, and
‘x
’ uses
select as an explanatory message when the
list-choices
editor command is used.
suffix is a single character to be appended to a successful completion. If null, no character is appended. If omitted (in which case the fourth delimiter can also be omitted), a slash is appended to directories and a space to other words.
command invoked from
list ‘`...`
’
has the additional environment variable
COMMAND_LINE
set, which contains (as its name
indicates) contents of the current (already typed in) command line. One
can examine and use contents of the COMMAND_LINE
environment variable in a custom script to build more sophisticated
completions (see completion for svn(1)
included in this package).
Now for some examples. Some commands take only directories as arguments, so there's no point completing plain files.
> complete cd 'p/1/d/'
completes only the first word following
‘cd
’
(‘p/1
’) with a directory.
‘p
’-type completion can also be
used to narrow down command completion:
> co[^D] complete compress > complete -co* 'p/0/(compress)/' > co[^D] > compress
This completion completes commands (words in position 0,
‘p/0
’) which begin with
‘co
’ (thus matching
‘co*
’) to
‘compress
’ (the only word in the
list). The leading ‘-
’ indicates
that this completion is to be used with only ambiguous commands.
> complete find 'n/-user/u/'
is an example of
‘n
’-type completion. Any word
following ‘find
’ and immediately
following ‘-user
’ is completed
from the list of users.
> complete cc 'c/-I/d/'
demonstrates ‘c
’-type
completion. Any word following
‘cc
’ and beginning with
‘-I
’ is completed as a directory.
‘-I
’ is not taken as part of the
directory because we used lowercase
‘c
’.
Different lists are useful with different commands.
> complete alias 'p/1/a/' > complete man 'p/*/c/' > complete set 'p/1/s/' > complete true 'p/1/x:Truth has no options./'
These complete words following
‘alias
’ with aliases,
‘man
’ with commands, and
‘set
’ with shell variables.
true
doesn't have any options, so
‘x
’ does nothing when completion
is attempted and prints
Truth has no
options.
Note that the ‘man
’
example, and several other examples below, could just as well have used
‘'c/*'
’ or
‘'n/*'
’ as
‘'p/*'
’.
Words can be completed from a variable evaluated at completion time,
> complete ftp 'p/1/$hostnames/' > set hostnames = (rtfm.mit.edu tesla.ee.cornell.edu) > ftp [^D] rtfm.mit.edu tesla.ee.cornell.edu > ftp [^C] > set hostnames = (rtfm.mit.edu tesla.ee.cornell.edu uunet.uu.net) > ftp [^D] rtfm.mit.edu tesla.ee.cornell.edu uunet.uu.net
or from a command run at completion time:
> complete kill 'p/*/`ps | awk \{print\ \$1\}`/' > kill -9 [^D] 23113 23377 23380 23406 23429 23529 23530 PID
Note that the complete
command does
not itself quote its arguments, so the braces, space and
‘$
’ in
‘{print $1}
’ must be quoted
explicitly.
One command can have multiple completions:
> complete dbx 'p/2/(core)/' 'p/*/c/'
completes the second argument to
‘dbx
’ with the word
‘core
’ and all other arguments
with commands. Note that the positional completion is specified before
the next-word completion. Because completions are evaluated from left to
right, if the next-word completion were specified first it would always
match and the positional completion would never be executed. This is a
common mistake when defining a completion.
The select pattern is useful when a command takes files with only particular forms as arguments. For example,
> complete cc 'p/*/f:*.[cao]/'
completes ‘cc
’ arguments
to files ending in only ‘.c
’,
‘.a
’, or
‘.o
’. select
can also exclude files, using negation of a glob-pattern as described
under Filename
substitution. One might use
> complete rm 'p/*/f:^*.{c,h,cc,C,tex,1,man,l,y}/'
to exclude precious source code from
‘rm
’ completion. Of course, one
could still type excluded names manually or override the completion
mechanism using the complete-word-raw
or
list-choices-raw
editor commands.
The ‘C
’,
‘D
’,
‘F
’, and
‘T
’ lists
are like ‘c
’,
‘d
’,
‘f
’, and
‘t
’ respectively, but they use the
select argument in a different way: to restrict
completion to files beginning with a particular path prefix. For
example, the Elm mail program uses
‘=
’ as an abbreviation for one's
mail directory. One might use
> complete elm c@=@F:$HOME/Mail/@
to complete
elm -f =
elm -f ~/Mail/
@
’
instead of ‘/
’ to avoid confusion
with the select argument, and we used
‘$HOME
’ instead of
‘~
’ because home directory
substitution works at only the beginning of a word.
suffix is used to add a nonstandard
suffix (not space or ‘/
’ for
directories) to completed words.
> complete finger 'c/*@/$hostnames/' 'p/1/u/@'
completes arguments to
‘finger
’ from the list of users,
appends an ‘@
’, and then completes
after the ‘@
’ from the
‘hostnames
’ variable. Note again
the order in which the completions are specified.
Finally, here's a complex example for inspiration:
> complete find \ 'n/-name/f/' 'n/-newer/f/' 'n/-{,n}cpio/f/' \ ´n/-exec/c/' 'n/-ok/c/' 'n/-user/u/' \ 'n/-group/g/' 'n/-fstype/(nfs 4.2)/' \ 'n/-type/(b c d f l p s)/' \ ´c/-/(name newer cpio ncpio exec ok user \ group fstype type atime ctime depth inum \ ls mtime nogroup nouser perm print prune \ size xdev)/' \ 'p/*/d/'
This completes words following
‘-name
’,
‘-newer
’,
‘-cpio
’, or
‘-ncpio
’ (note the pattern which
matches both) to files, words following
‘-exec
’ or
‘-ok
’ to commands, words following
‘-user
’ and
‘-group
’ to users and groups
respectively and words following
‘-fstype
’ or
‘-type
’ to members of the given
lists. It also completes the switches themselves from the given list
(note the use of ‘c
’-type
completion) and completes anything not otherwise completed to a
directory. Whew.
Remember that programmed completions are ignored if the word
being completed is a tilde substitution (beginning with
‘~
’) or a variable (beginning with
‘$
’). See also the
uncomplete
builtin command.
continue
while
or foreach
. The rest of the commands on the
current line are executed.default:
switch
statement. It
should come after all case
labels.dirs
[-l
]
[-n
|-v
]dirs
-S
|-L
[filename] (+)dirs
-c
(+)-l
, ‘~
’ or
‘~name
’ in the
output is expanded explicitly to home
or the
pathname of the home directory for user name. (+)
With -n
, entries are wrapped before they reach the
edge of the screen. (+) With -v
, entries are
printed one per line, preceded by their stack positions. (+) If more than
one of -n
or -v
is given,
-v
takes precedence. -p
is
accepted but does nothing.
The second form with -S
saves the
directory stack to filename as a series of
cd
and pushd
commands.
The second form with -L
sources
filename, which is presumably a directory stack
file saved by the -S
option or the
savedirs
mechanism. In either case,
dirsfile
is used if
filename is not given and
~/.cshdirs is used if
dirsfile
is unset.
Note that login shells do the equivalent of
dirs -L
savedirs
is set,
dirs -S
dirsfile
should be set in
~/.tcshrc rather than
~/.login.
The third form clears the directory stack.
echo
[-n
] word
...echo_style
shell variable may be set to emulate
(or not) the flags and escape sequences of the BSD and/or System V
versions of echo(1); see
Escape sequences (+) and
echo(1).echotc
[-sv
] arg
... (+)echotc home
echotc cm 3 10
echotc ts 0; echo "This is a
test."; echotc fs
This is a test.
If arg is
‘baud
’,
‘cols
’,
‘lines
’,
‘meta
’, or
‘tabs
’, prints the value of that
capability (“yes” or “no” indicating that
the terminal does or does not have that capability). One might use this
to make the output from a shell script less verbose on slow terminals,
or limit command output to the number of lines on the screen:
> set history=`echotc lines` > @ history--
Termcap strings may contain wildcards which will not echo correctly. One should use double quotes when setting a shell variable to a terminal capability string, as in the following example that places the date in the status line:
> set tosl="`echotc ts 0`" > set frsl="`echotc fs`" > echo -n "$tosl";date; echo -n "$frsl"
With -s
, nonexistent capabilities
return the empty string rather than causing an error. With
-v
, messages are verbose.
eval
arg ...eval
.exec
command ...exit
[expr]fg
[%
job
...]
’,
‘%
’,
‘+
’, or
‘-
’ as described under
Jobs. See also the
run-fg-editor
editor command.filetest
-
op file ...
(+)foreach
name
(
wordlist)
...
end
end
. (Both
foreach
and end
must
appear alone on separate lines.) The builtin command
continue
may be used to continue the loop
prematurely and the builtin command break
to
terminate it prematurely. When this command is read from the terminal, the
loop is read once prompting with
foreach?
prompt2
) before any statements in the loop are
executed. If you make a mistake typing in a loop at the terminal you can
rub it out.getspath
(+)getxvers
(+)glob
word ...echo
, but the -n
parameter is not recognized and words are delimited by null characters in
the output. Useful for programs which wish to use the shell to filename
expand a list of words.goto
wordlabel:
hashstat
exec
's). An exec
is
attempted for each component of the path
where the
hash function indicates a possible hit, and in each component which does
not begin with a ‘/
’.
On machines without vfork(2), prints only the number and size of hash buckets.
history
[-hTr
] [n]history
-S
|-L
|-M
[filename] (+)history
-c
(+)-h
, the history list is printed
without leading numbers. If -T
is specified,
timestamps are printed also in comment form. This can be used to produce
files suitable for loading with
history -L
source -h
With -r
, the order of printing is most
recent first rather than oldest first.
The second form with -S
saves the
history list to filename. If the first word of the
savehist
shell variable is set to a number, at
most that many lines are saved. If the second word of
savehist
is set to
‘merge
’, the history list is
merged with the existing history file instead of replacing it (if there
is one) and sorted by time stamp. (+) Merging is intended for an
environment like the X Window System with several shells in simultaneous
use. If the second word of savehist
is
‘merge
’ and the third word is set
to ‘lock
’, the history file update
will be serialized with other shell sessions that would possibly like to
merge history at exactly the same time.
The second form with -L
appends
filename (which is presumably a history list saved
by the -S
option or the
savehist
mechanism) to the history list.
-M
is like -L
, but the
contents of filename are merged into the history
list and sorted by timestamp. In either case,
histfile
is used if
filename is not given and
~/.history is used if
histfile
is unset.
Note that
history -L
source -h
Note that login shells do the equivalent of
history -L
savehist
is set,
history -S
histfile
should be set in
~/.tcshrc rather than
~/.login.
If histlit
is set, the first and
second forms print and save the literal (unexpanded) form of the history
list.
The third form clears the history list.
hup
[command] (+)hup
.
Without an argument, causes the non-interactive shell only to exit on a
hangup for the remainder of the script. See also
Signal handling and the
nohup
builtin command.if
(
expr)
commandif
command.
command must be a simple command, not an alias, a
pipeline, a command list or a parenthesized command list, but it may have
arguments. Input/output redirection occurs even if
expr is false and command is
thus not executed; this is a bug.if
(
expr)
then
...
else if
(
expr2)
then
...
else
...
endif
else
are executed; otherwise if
expr2 is true then the commands to the second
else
are executed, etc. Any number of
else if
pairs are possible; only one
endif
is needed. The else
part is likewise optional. (The words else
and
endif
must appear at the beginning of input lines;
the if
must appear alone on its input line or
after an else
.)inlib
shared-library ...
(+)jobs
[-l
]jobs
-Z
[title]
(+)-l
,
lists process IDs in addition to the normal information. On TCF systems,
prints the site on which each job is executing.
The second form with the -Z
option
sets the process title to title using
setproctitle(3) where
available. If no title is provided, the process
title will be cleared.
kill
-l
kill
[-s
signal]
%
job|pid
...The second form sends the specified
signal (or, if none is given, the TERM (terminate)
signal) to the specified jobs or processes. job
may be a number, a string, ‘’,
‘
%
’,
‘+
’, or
‘-
’ as described under
Jobs. Signals are either given by number
or by name (as given in /usr/include/signal.h,
stripped of the prefix ‘SIG’).
There is no default job; entering just
kill
limit
[-h
] [resource
[maximum-use]]If no maximum-use is given, then the current limit for resource is printed.
If no resource is given, then all limitations are given.
If the -h
flag is given, the hard
limits are used instead of the current limits. The hard limits impose a
ceiling on the values of the current limits. Only the super-user may
raise the hard limits, but a user may lower or raise the current limits
within the legal range.
Controllable resource types currently include (if supported by the OS):
concurrency
coredumpsize
cputime
datasize
descriptors
or openfiles
filesize
heapsize
kqueues
maxlocks
maxmessage
maxnice
maxproc
maxrtprio
maxrttime
maxsignal
maxthread
memorylocked
memoryuse
posixlocks
pseudoterminals
sbsize
stacksize
swapsize
threads
vmemoryuse
maximum-use may be given as a (floating
point or integer) number followed by a scale factor. For all limits
other than cputime
the default scale is
‘k
’ or
‘kilobytes
’ (1024 bytes); a scale
factor of ‘m
’ or
‘megabytes
’ (1048576 bytes) or
‘g
’ or
‘gigabytes
’ (1073741824 bytes) may
also be used. For cputime
the default scaling is
‘seconds
’, while
‘m
’ for minutes or
‘h
’ for hours, or a time of the
form
‘mm:
ss’
giving minutes and seconds may be used.
If maximum-use is
‘unlimited
’, then the limitation
on the specified resource is removed (this is
equivalent to the unlimit
builtin command).
For both resource names and scale factors, unambiguous prefixes of the names suffice.
log
(+)watch
shell variable and reports on
each user indicated in watch
who is logged in,
regardless of when they last logged in. See also
watchlog
.login
logout
ignoreeof
is set.ls-F
[-
switch
...] [file
...] (+)ls -F
ls-F
identifies each type of special
file in the listing with a special character suffix:
/
*
#
%
|
=
@
+
:
If the listlinks
shell variable is
set, symbolic links are identified in more detail (on only systems that
have them, of course):
@
>
&
listlinks
also slows down
ls-F
and causes partitions holding files pointed
to by symbolic links to be mounted.
If the listflags
shell variable is set
to ‘x
’,
‘a
’, or
‘A
’, or any combination thereof
(e.g., ‘xA
’), they are used as
flags to ls-F
, making it act like
ls -xF ls -Fa ls -FA
or a combination, for example
ls -FxA
On machines where
ls -C
ls-F
acts like
ls -CF
listflags
contains an
‘x
’, in which case it acts like
ls -xF
ls-F
passes its arguments to
ls(1) if it is given any switches, so
alias ls ls-F
The ls-F
builtin can list files using
different colors depending on the file type or extension. See the
color
shell variable and the
CLICOLOR_FORCE
,
LSCOLORS
, and LS_COLORS
environment variables.
migrate
[-
site]
pid|%
jobid
... (+)migrate
-
site
(+)The second form is equivalent to
migrate
-site $$
newgrp
[-
] [group]
(+)exec newgrp
version
shell
variable.nice
[+
number]
[command]nice
-number ...
command is always executed in a
sub-shell, and the restrictions placed on commands in simple
if
statements apply.
nohup
[command]nohup
.
Without an argument, causes the non-interactive shell only to
ignore hangups for the remainder of the script. See also
Signal handling and the
hup
builtin command.
notify
[%
job
...]%
job, the current job)
changes, instead of waiting until the next prompt as is usual.
job may be a number, a string,
‘
’,
‘%
’,
‘+
’, or
‘-
’ as described under
Jobs. See also the
notify
shell variable.onintr
[-
|label]With ‘-
’, causes all
interrupts to be ignored.
With label, causes the shell to execute a
goto
label
onintr
is ignored if the shell is
running detached and in system startup files (see
FILES), where interrupts are disabled
anyway.
popd
[-p
] [-l
]
[-n
|-v
]
[+
n]With a number
‘+n
’,
discards the nth entry in the stack.
Finally, all forms of popd
print the
final directory stack, just like dirs
. The
pushdsilent
shell variable can be set to prevent
this and the -p
flag can be given to override
pushdsilent
. The -l
,
-n
, and -v
flags have
the same effect on popd
as on
dirs
. (+)
printenv
[name] (+)pushd
[-p
] [-l
]
[-n
|-v
]
[name|+
n]pushdtohome
is set,
pushd
without arguments acts as
pushd ~
cd
. (+)
With name, pushes the current working
directory onto the directory stack and changes to
name. If name is
‘-
’ it is interpreted as the
previous working directory (see
Filename substitution).
(+) If dunique
is set,
pushd
removes any instances of
name from the stack before pushing it onto the
stack. (+)
With a number
‘+n
’,
rotates the nth element of the directory stack
around to be the top element and changes to it. If
dextract
is set, however,
pushd
+n
Finally, all forms of pushd
print the
final directory stack, just like dirs
. The
pushdsilent
shell variable can be set to prevent
this and the -p
flag can be given to override
pushdsilent
. The -l
,
-n
, and -v
flags have
the same effect on pushd
as on
dirs
. (+)
rehash
path
variable to be recomputed. This is needed if
the autorehash
shell variable is not set and new
commands are added to directories in path
while
you are logged in. With autorehash
, a new command
will be found automatically, except in the special case where another
command of the same name which is located in a different directory already
exists in the hash table. Also flushes the cache of home directories built
by tilde expansion.repeat
count commandif
statement above, is executed
count times. I/O redirections occur exactly once,
even if count is 0.rootnode
//
nodename
(+)/
’ will be interpreted as
‘//nodename
’.
(Domain/OS only)sched
(+)sched
[+
]hh:
mm
command (+)sched
-
n
(+)sched
shell variable may be set to define the
format in which the scheduled-event list is printed.
The second form adds command to the scheduled-event list. For example,
> sched 11:00 echo It\'s eleven o\'clock.
causes the shell to echo
It's eleven o'clock.
The time may be in 12-hour AM/PM format
> sched 5pm set prompt='[%h] It\'s after 5; go home: >'
or may be relative to the current time:
> sched +2:15 /usr/lib/uucp/uucico -r1 -sother
A relative time specification may not use AM/PM format.
The third form removes item n from the event list:
> sched 1 Wed Apr 4 15:42 /usr/lib/uucp/uucico -r1 -sother 2 Wed Apr 4 17:00 set prompt=[%h] It's after 5; go home: > > sched -2 > sched 1 Wed Apr 4 15:42 /usr/lib/uucp/uucico -r1 -sother
A command in the scheduled-event list is executed just before the first prompt is printed after the time when the command is scheduled. It is possible to miss the exact time when the command is to be run, but an overdue command will execute at the next prompt. A command which comes due while the shell is waiting for user input is executed immediately. However, normal operation of an already-running command will not be interrupted so that a scheduled-event list element may be run.
This mechanism is similar to, but not the same as, the
at(1) command on some Unix systems. Its
major disadvantage is that it may not run a command at exactly the
specified time. Its major advantage is that because
sched
runs directly from the shell, it has
access to shell variables and other structures. This provides a
mechanism for changing one's working environment based on the time of
day.
set
set
name ...set
name=
word
...set
[-r
]
[-f
|-l
]
name=(
wordlist)
... (+)set
name[
index]=
word
...set
-r
(+)set
-r
name
... (+)set
-r
name=
word
... (+)The second form sets name to the null string.
The third form sets name to the single word.
The fourth form sets name to the list of words in wordlist.
In all cases the value is command and filename expanded. If
-r
is specified, the value is set read-only. If
-f
or -l
are specified,
set only unique words keeping their order. -f
prefers the first occurrence of a word, and -l
the last.
The fifth form sets the index'th component of name to word; this component must already exist.
The sixth form lists only the names of all shell variables that are read-only.
The seventh form makes name read-only, whether or not it has a value.
The eighth form is the same as the third form, but make name read-only at the same time.
These arguments can be repeated to set and/or make read-only
multiple variables in a single set command. Note, however, that variable
expansion happens for all arguments before any setting occurs. Note also
that ‘=
’ can be adjacent to both
name and word or separated
from both by whitespace, but cannot be adjacent to only one or the
other. See also the unset
builtin command.
setenv
[name [value]]With name, sets the environment variable name to value or, without value, to the null string.
setpath
path (+)setspath
LOCAL
|site|cpu
... (+)settc
cap value (+)settc xn no
setty
[-d
|-q
|-x
]
[-a
]
[[+
|-
]mode]
(+)-d
,
-q
, or -x
tells
setty
to act on the ‘edit’,
‘quote’, or ‘execute’ set of tty modes
respectively; without -d
,
-q
, or -x
,
‘execute’ is used.
Without other arguments, setty
lists
the modes in the chosen set which are fixed on
(‘+
mode’) or
off
(‘-
mode’).
The available modes, and thus the display, vary from system to system.
With -a
, lists all tty modes in the chosen set
whether or not they are fixed. With
+
mode,
-
mode, or
mode, fixes mode on or off
or removes control from mode in the chosen set.
For example,
setty +echok echoe
echok
’ mode on and allows
commands to turn ‘echoe
’ mode on or
off, both when the shell is executing commands.setxvers
[string] (+)shift
[variable]argv
[1] and shifts the
members of argv
to the left. It is an error for
argv
not to be set or to have fewer than one word
as value.
With variable, performs the same function on variable.
source
[-h
] name
[args ...]argv
. (+) source
commands
may be nested; if they are nested too deeply the shell may run out of file
descriptors. An error in a source
at any level
terminates all nested source
commands.
With -h
, commands are placed on the
history list instead of being executed, much like
history -L
stop
%
job|pid
...
’,
‘%
’,
‘+
’, or
‘-
’ as described under
Jobs.
There is no default job; entering just
stop
suspend
^Z
. This is most often used to stop
shells started by su(1).switch
(
string)
case
str1: ...
breaksw
...
default:
...
breaksw
endsw
*
’,
‘?
’, and
‘[...]
’ may be used in the case
labels, which are variable expanded. If none of the labels match before a
default
label is found, then the execution begins
after the default
label. Each case label and the
default
label must appear at the beginning of a
line. The command breaksw
causes execution to
continue after the endsw
. Otherwise control may
fall through case labels and default labels as in C. If no label matches
and there is no default, execution continues after the
endsw
.telltc
(+)termname
[termtype] (+)TERM
if no termtype is
given) has an entry in the hosts
termcap(5) or
terminfo(5) database. Prints the
terminal type to stdout and returns 0 if an entry is present otherwise
returns 1.time
[command]time
variable. If necessary, an extra shell is
created to print the time statistic when the command completes.
Without command, prints a time summary for the current shell and its children.
umask
[value]Without value, prints the current file creation mask.
unalias
patternunalias *
unalias
ed.uncomplete
pattern (+)uncomplete *
uncomplete
d.unhash
universe
universe (+)unlimit
[-hf
] [resource]With -h
, the corresponding hard limits
are removed. Only the super-user may do this.
Note that unlimit
may not exit
successful, since most systems do not allow
descriptors
to be unlimited.
With -f
errors are ignored.
unset
patternunset *
It is not an error for nothing to be
unset
.
unsetenv
patternunsetenv *
It is not an error for nothing to be
unsetenv
ed.
ver
[systype [command]]
(+)SYSTYPE
.
With systype, sets
SYSTYPE
to systype.
With systype and
command, executes command
under systype. systype may
be ‘bsd4.3
’ or
‘sys5.3
’.
(Domain/OS only)
wait
warp
universe (+)watchlog
(+)log
builtin command.
Available only if the shell was so compiled; see the
version
shell variable.where
command (+)path
.which
command (+)path
searching, etc. The builtin
command is just like which(1), but it
correctly reports tcsh
aliases and builtins and is
10 to 100 times faster. See also the which-command
editor command.while
(
expr)
...
end
while
and the
matching end
while expr (an
expression, as described under
Expressions) evaluates non-zero.
while
and end
must appear
alone on their input lines. break
and
continue
may be used to terminate or continue the
loop prematurely. If the input is a terminal, the user is prompted the
first time through the loop as with foreach
.If set, each of these aliases executes automatically at the indicated time. They are all initially undefined.
Supported special aliases are:
beepcmd
cwdcmd
> alias cwdcmd 'echo -n "^[]2;${HOST}:$cwd ^G"'
then the shell will change the title of the running
xterm(1) to be the name of the host, a
‘:
’, and the full current working
directory. A fancier way to do that is
> alias cwdcmd 'echo -n "^[]2;${HOST}:$cwd^G^[]1;${HOST}^G"'
This will put the hostname and working directory on the title bar but only the hostname in the icon manager menu.
Note that putting a cd
,
pushd
, or popd
in
cwdcmd
may cause an infinite loop. It is the
author's opinion that anyone doing so will get what they deserve.
jobcmd
postcmd
, but it does not print
builtins.
> alias jobcmd 'echo -n "^[]2\;\!#:q^G"'
then executing
vi foo.c
helpcommand
run-help
editor command. The
command name for which help is sought is passed as sole argument. For
example, if one does
> alias helpcommand '\!:1 --help'
then the help display of the command itself will be invoked, using the GNU help calling convention.
Currently there is no easy way to account for various calling
conventions (e.g., the customary Unix
‘-h
’), except by using a table of
many commands.
periodic
tperiod
minutes. This provides a
convenient means for checking on common but infrequent changes such as new
mail. For example, if one does
> set tperiod = 30 > alias periodic checknews
then the checknews(1) program runs every 30 minutes.
If periodic
is set but
tperiod
is unset or set to 0,
periodic
behaves like
precmd
.
precmd
> alias precmd date
then date(1) runs just before the shell prompts for each command.
There are no limits on what precmd
can
be set to do, but discretion should be used.
postcmd
> alias postcmd 'echo -n "^[]2\;\!#:q^G"'
then executing
vi foo.c
shell
/bin/csh
’ or
‘/usr/local/bin/tcsh
’).The variables described in this section have special meaning to the shell.
The shell sets addsuffix
,
argv
, autologout
,
csubstnonl
, command
,
echo_style
, edit
,
gid
, group
,
home
, loginsh
,
oid
, path
,
prompt
, prompt2
,
prompt3
, shell
,
shlvl
, tcsh
,
term
, tty
,
uid
, user
, and
version
at startup; they do not change thereafter
unless changed by the user. The shell updates cwd
,
dirstack
, owd
, and
status
when necessary, and sets
logout
on logout.
The shell synchronizes group
,
home
, path
,
shlvl
, term
, and
user
with the environment variables of the same
names: whenever the environment variable changes the shell changes the
corresponding shell variable to match (unless the shell variable is
read-only) and vice versa. Note that although cwd
and PWD
have identical meanings, they are not
synchronized in this manner, and that the shell automatically converts
between the different formats of path
and
PATH
.
Supported special shell variables are:
addsuffix
(+)/
’
to the end of directories and a space to the end of normal files when they
are matched exactly. Set by default.afsuser
(+)autologout
's autolock feature uses its
value instead of the local username for kerberos authentication.ampm
(+)anyerror
(+)status
variable. For more information see the
description of the status
variable below.argv
argv
, i.e.,
‘$1
’ is replaced by
‘$argv[1]
’, etc. Set by default, but
usually empty in interactive shells.autocorrect
(+)spell-word
editor command is invoked
automatically before each completion attempt.autoexpand
(+)expand-history
editor command is
invoked automatically before each completion attempt.
If this is set to
‘onlyhistory
’, then only history
will be expanded and a second completion will expand filenames.
autolist
(+)If set to ‘ambiguous
’,
possibilities are listed only when no new characters are added by
completion.
autologout
(+)auto-logout
logout
to
‘automatic
’ and exits. When the
shell automatically locks, the user is required to enter their password to
continue working. Five incorrect attempts result in automatic logout.
Set to ‘60
’ (automatic
logout after 60 minutes, and no locking) by default in login and
superuser shells, but not if the shell thinks it is running under a
window system (i.e., the DISPLAY
environment
variable is set), the tty is a pseudo-tty (pty) or the shell was not so
compiled (see the version
shell variable).
Unset autologout
or set it to
‘0
’ to disable automatic logout.
See also the afsuser
and
logout
shell variables.
autorehash
(+)path
variable will be recomputed if a command is
not found in the hash table. In addition, the list of available commands
will be rebuilt for each command completion or spelling correction attempt
if set to ‘complete
’ or
‘correct
’ respectively; if set to
‘always
’, this will be done for both
cases.backslash_quote
(+)\
’,
‘'
’, and
‘"
’. This may make complex
quoting tasks easier, but it can cause syntax errors in
csh(1) scripts.catalog
tcsh
uses tcsh.${catalog} as a message catalog instead
of default tcsh.cdpath
cd
should search
for subdirectories if they aren't found in the current directory.cdtohome
(+)cd
requires a directory
name, and will not go to the
home
directory if it's omitted. This is set by
default.color
ls-F
and it passes
--color=auto
to
ls(1) (or
--color=always
if
CLICOLOR_FORCE
is set). Alternatively, it can be
set to only ‘ls-F
’ or only
‘ls
’ to enable color for a specific
command. Setting it to nothing is equivalent to setting it to
‘(ls-F ls)
’. Color is disabled if
the output is not directed to a terminal, unless
CLICOLOR_FORCE
is set.colorcat
command
(+)-c
flag.compat_expr
(+)complete
(+)igncase
’, the completion
becomes case insensitive.
If set to ‘enhance
’,
completion ignores case and considers hyphens and underscores to be
equivalent; it will also treat periods, hyphens and underscores
(‘.
’,
‘-
’, and
‘_
’) as word separators.
If set to ‘Enhance
’,
completion matches uppercase and underscore characters explicitly and
matches lowercase and hyphens in a case-insensitive manner; it will
treat periods, hyphens and underscores as word separators.
continue
(+)continue_args
(+)echo `pwd` $argv > ~/.<cmd>_pause; %<cmd>
correct
(+)cmd
’, commands are
automatically spelling-corrected.
If set to ‘complete
’,
commands are automatically completed.
If set to ‘all
’, the
entire command line is corrected.
csubstnonl
(+)cwd
dirstack
and owd
shell
variables.dextract
(+)pushd
+n
dirsfile
(+)dirs -S
dirs -L
dirsfile
should be set in
~/.tcshrc rather than
~/.login.dirstack
(+)=0
’ in directory stack
substitutions, etc. One can change the stack arbitrarily by setting
dirstack
, but the first element (the current
working directory) is always correct. See also the
cwd
and owd
shell
variables.dspmbyte
(+)dspm
’ is
listed as part of the version
shell variable.
If set to ‘euc
’, it
enables display and editing EUC-kanji(Japanese) code.
If set to ‘sjis
’, it
enables display and editing Shift-JIS(Japanese) code.
If set to ‘big5
’, it
enables display and editing Big5(Chinese) code.
If set to ‘utf8
’, it
enables display and editing Utf8(Unicode) code.
If set to exactly 256 characters in the following format, it enables display and editing of original multi-byte code format:
> set dspmbyte =
NNN...[250
characters]...NNN
Each character N in the 256 character value corresponds (from left to right) to the ASCII codes 0x00, 0x01, 0x02, ..., 0xfd, 0xfe, 0xff at the same index. Each character is set to number 0, 1, 2 or 3, with the meaning:
For example, if set to 256 characters starting with
‘001322
’, the value is interpreted
as:
Character | ASCII | Multi-byte character use |
0 |
0x00 | Not used. |
0 |
0x01 | Not used. |
1 |
0x02 | First byte. |
3 |
0x03 | First byte and second byte. |
2 |
0x04 | Second byte. |
2 |
0x05 | Second byte. |
The GNU coreutils version of
ls(1) cannot display multi-byte filenames
without the -N
(--literal
) option. If you are using this
version, set the second word of dspmbyte to
‘ls
’. If not, for example,
ls-F -l
Note that this variable can only be used if KANJI and DSPMBYTE has been defined at compile time.
dunique
(+)pushd
removes any instances of
name from the stack before pushing it onto the
stack.echo
-x
command line option.echo_style
(+)echo
builtin. May be set to:
Set by default to the local system default. The BSD and System V options are described in the echo(1) man pages on the appropriate systems.
edit
(+)editors
(+)run-fg-editor
editor command to match. If not set, the EDITOR
(‘ed
’ if unset) and
VISUAL
(‘vi
’
if unset) environment variables will be used instead.ellipsis
(+)%c
’,
‘%.
’, and
‘%C
’ prompt sequences (see the
prompt
shell variable) indicate skipped
directories with an ellipsis (‘...
’)
instead of
‘/<skipped>
’.euid
(+)euser
(+)fignore
(+)filec
tcsh
, completion is always used and this
variable is ignored by default.
If edit
is unset, then the traditional
csh(1) completion is used.
If set in csh(1), filename completion is used.
gid
(+)globdot
(+).
’ except for
‘.’ and
‘..’.globstar
(+)**
’ and
‘***
’ file glob patterns will match
any string of characters including
‘/
’ traversing any existing
sub-directories. For example,
ls **.c
If used by itself, it will match zero or more sub-directories. For example,
ls
/usr/include/**/time.h
time.h
’ in
the /usr/include directory tree; whereas
ls
/usr/include/**time.h
time.h
’.
To prevent problems with recursion, the
‘**
’ glob-pattern will not descend
into a symbolic link containing a directory. To override this, use
‘***
’.
group
(+)highlight
i-search-back
and
i-search-fwd
) and the region between the mark and
the cursor are highlighted in reverse video.
Highlighting requires more frequent terminal writes, which introduces extra overhead. If you care about terminal performance, you may want to leave this unset.
histchars
The first character of its value is used as the history
substitution character, replacing the default character
‘!
’.
The second character of its value replaces the character
‘^
’ in quick substitutions.
histdup
(+)If set to ‘all
’ only
unique history events are entered in the history list.
If set to ‘prev
’ and the
last history event is the same as the current command, then the current
command is not entered in the history.
If set to ‘erase
’ and
the same event is found in the history list, that old event gets erased
and the current one gets inserted.
Note that the ‘prev
’ and
‘all
’ options renumber history
events so there are no gaps.
histfile
(+)history -S
history -L
If unset, ~/.history is used.
histfile
is useful when sharing the
same home directory between different machines, or when saving separate
histories on different terminals. Because only
~/.tcshrc is normally sourced before
~/.history, histfile
should be set in ~/.tcshrc rather than
~/.login.
histlit
(+)savehist
mechanism use the literal (unexpanded)
form of lines in the history list. See also the
toggle-literal-history
editor command.history
The optional second word (+) indicates the format in which
history is printed; if not given,
‘%h\t%T\t%R\n
’ is used. The format
sequences are described below under prompt
; note
the variable meaning of ‘%R
’.
Set to ‘100
’ by
default.
home
~
’ refers to this variable.ignoreeof
0
’
and the input device is a terminal, the
end-of-file
command (usually generated by the user
by typing ^D
on an empty line) causes the shell to
print
Use "exit" to leave
tcsh.
If set to a number ‘n’, the
shell ignores n - 1 consecutive
end-of-file
s and exits on the
nth (+).
If unset, ‘1
’ is used,
i.e., the shell exits on a single ^D
.
implicitcd
(+)If set to verbose
, the change of
directory is echoed to the standard output.
This behavior is inhibited in non-interactive shell scripts, or for command strings with more than one word. Changing directory takes precedence over executing a like-named command, but it is done after alias substitutions. Tilde and variable expansions work as expected.
inputmode
(+)insert
’ or
‘overwrite
’, puts the editor into
that input mode at the beginning of each line.killdup
(+)If set to ‘all
’ only
unique strings are entered in the kill ring.
If set to ‘prev
’ and the
last killed string is the same as the current killed string, then the
current string is not entered in the ring.
If set to ‘erase
’ and
the same string is found in the kill ring, the old string is erased and
the current one is inserted.
killring
(+)Set to ‘30
’ by
default.
If unset or set to less than
‘2
’, the shell will only keep the
most recently killed string.
Strings are put in the killring by the editor commands that
delete (kill) strings of text, e.g.
backward-delete-word
,
kill-line
, etc, as well as the
copy-region-as-kill
command. The
yank
editor command will yank the most recently
killed string into the command-line, while
yank-pop
(see
Editor commands (+)) can
be used to yank earlier killed strings.
listflags
(+)x
’,
‘a
’, or
‘A
’, or any combination thereof
(e.g., ‘xA
’), they are used as flags
to ls-F
, making it act like
ls -xF ls -Fa ls -FA
or a combination, for example
ls -FxA
If the first word contains
‘a
’, shows all files (even if they
start with a ‘.
’).
If the first word contains
‘A
’, shows all files but
‘.
’ and
‘..
’.
If the first word contains
‘x
’, sorts across instead of
down.
If the second word of listflags
is
set, it is used as the path to ls(1).
listjobs
(+)If set to ‘long
’, the
listing is in long format.
listlinks
(+)ls-F
builtin command shows the type of
file to which each symbolic link points.listmax
(+)list-choices
editor command will list without asking first.listmaxrows
(+)list-choices
editor command will list without
asking first.loginsh
(+)shlvl
.logout
(+)normal
’ before
a normal logout, ‘automatic
’ before
an automatic logout, and ‘hangup
’ if
the shell was killed by a hangup signal (see
Signal handling). See also the
autologout
shell variable.mail
You have new mail.
mail
contains multiple files,
You have new mail in
name.
If you are in a login shell, then no mail file is reported unless it has been modified after the time the shell has started up, to prevent redundant notifications. Most login programs will tell you whether or not you have mail when you log in.
If a file specified in mail
is a
directory, the shell will count each file within that directory as a
separate message, and will report
You have n
mails.
You have n
mails in
name.
If the first word of mail
is numeric
it is taken as a different mail checking interval, in seconds.
Under very rare circumstances, the shell may report
You have mail.
You have new mail.
matchbeep
(+)never
’, completion never
beeps.
If set to ‘nomatch
’, it
beeps only when there is no match.
If set to ‘ambiguous
’,
it beeps when there are multiple matches.
If set to ‘notunique
’,
it beeps when there is one exact and other longer matches.
If unset, ‘ambiguous
’ is
used.
nobeep
(+)visiblebell
.noclobber
>>
’ redirections refer to
existing files, as described in the
Input/output section.
If contains ‘ask
’, an
interacive confirmation is presented, rather than an error.
If contains ‘notempty
’,
‘>
’ is allowed on empty
files.
noding
DING!
prompt
time specifiers at the change of
hour.noglob
nokanji
(+)version
shell variable), it is disabled so that
the meta key can be used.nonomatch
echo [
nostat
(+)notify
oid
(+)owd
(+)-
’ used by
cd
and pushd
. See also the
cwd
and dirstack
shell
variables.padhour
parseoctal
path
A null word specifies the current directory.
If there is no path
variable then only
full path names will execute.
path
is set by the shell at startup
from the PATH
environment variable or, if
PATH
does not exist, to a system-dependent
default, such as
(/usr/local/bin /usr/bsd /bin
/usr/bin .)
The shell may put ‘.
’
first or last in path
or omit it entirely
depending on how it was compiled; see the
version
shell variable.
A shell which is given neither the -c
nor the -t
option hashes the contents of the
directories in path
after reading
~/.tcshrc and each time
path
is reset.
If one adds a new command to a directory in
path
while the shell is active, one may need to
do a rehash
for the shell to find it.
printexitvalue
(+)Exit
status
prompt
prompt
may include any of the
following formatting sequences (+), which are replaced by the given
information:
%/
%~
~
’ and other
users' home directories represented by
‘~user
’ as
per Filename
substitution.
‘~user
’
substitution happens only if the shell has already used
‘~user
’ in
a pathname in the current session.%c[[0]
n]
,
%.[[0]
n]
0
’, the number of skipped
components precede the trailing component(s) in the format
‘/<skipped>trailing
’.
If the ellipsis
shell variable is set, skipped
components are represented by an ellipsis so the whole becomes
‘...trailing
’.
‘~
’ substitution is done as in
‘%~
’ above, but the
‘~
’ component is ignored when
counting trailing components.%C
%c
’, but without
‘~
’ substitution.%h
,
%!
, !
%M
%m
.
’.%S
(%s
)%B
(%b
)%U (%u)
%t
,
%@
%T
%t
’, but in 24-hour format
(but see the ampm
shell variable).%p
%P
%p
’, but in 24-hour format
(but see the ampm
shell variable).\
cbindkey
.^
cbindkey
.%%
%
’.%n
%N
%j
%d
%D
%w
%W
%y
%Y
%l
%L
%$
$
’.%#
>
’ (or the first character
of the promptchars
shell variable) for normal
users, ‘#
’ (or the second
character of promptchars
) for the
superuser.%{
string%}
string
as a literal escape sequence.
It should be used only to change terminal attributes and should not
move the cursor location. This cannot be the last sequence in
prompt
.%?
%R
prompt2
, the status of the parser. In
prompt3
, the corrected string. In
history
, the history string.‘%B
’,
‘%S
’,
‘%U
’, and
‘%{string
’
are available in only eight-bit-clean shells; see the
%}
version
shell variable.
The bold, standout and underline sequences are often used to distinguish a superuser shell. For example,
> set prompt = "%m [%h] %B[%@]%b [%/] you
rang? "
tut
[37]
[2:54pm]
[/usr/accts/sys] you rang? _
If ‘%t
’,
‘%@
’,
‘%T
’,
‘%p
’, or
‘%P
’ is used, and
noding
is not set, then print
DING!
Set by default to
‘%#
’ in interactive
shells.
prompt2
(+)while
and
foreach
loops and after lines ending in
‘\
’. The same format sequences may
be used as in prompt
; note the variable meaning of
‘%R
’.
Set by default to
‘%R?
’ in interactive
shells.
prompt3
(+)prompt
; note the variable meaning of
‘%R
’.
Set by default to ‘CORRECT>%R
(y|n|e|a)?
’ in interactive shells.
promptchars
(+)%#
’ formatting sequence in the
prompt
shell variable is replaced with the first
character for normal users and the second character for the
superuser.pushdtohome
(+)pushd
without arguments does
pushd ~
cd
.pushdsilent
(+)pushd
and popd
do
not print the directory stack.recexact
(+)recognize_only_executables
(+)rmstar
(+)rm *
rprompt
(+)prompt
. It will automatically disappear and
reappear as necessary, to ensure that command input isn't obscured, and
will appear only if the prompt, command input, and itself will fit
together on the first line.
If edit
isn't set, then
rprompt
will be printed after the prompt and
before the command input.
savedirs
(+)dirs -S
If the first word is set to a number, at most that many directory stack entries are saved.
savehist
history -S
If the first word is set to a number, at most that many lines
are saved. (The number should be less than or equal to the number
history
entries; if it is set to greater than
the number of history
settings, only
history
entries will be saved.)
If the second word is set to
‘merge
’, the history list is
merged with the existing history file instead of replacing it (if there
is one) and sorted by time stamp and the most recent events are
retained.
If the second word is set to
‘merge
’ and the third word is set
to ‘lock
’, the history file update
will be serialized with other shell sessions that would possibly like to
merge history at exactly the same time. (+)
sched
(+)sched
builtin command
prints scheduled events; if not given,
‘%h\t%T\t%R\n
’ is used. The format
sequences are described above under prompt
; note
the variable meaning of ‘%R
’.shell
shlvl
(+)loginsh
.status
status
.
(This is also the default csh(1)
behavior.) This default does not match what POSIX mandates (to return the
status of the last command only). To match the POSIX behavior, you need to
unset anyerror
.
If the anyerror
variable is unset, the
exit status of a pipeline is determined only from the last command in
the pipeline, and the exit status of a backquote expansion is
not propagated to status
.
If a command terminated abnormally, then 0200 is added to the
status. Builtin commands which fail return exit status
‘1
’, all other builtin commands
return status ‘0
’.
symlinks
(+)If set to ‘chase
’,
whenever the current directory changes to a directory containing a
symbolic link, it is expanded to the real name of the directory to which
the link points. This does not work for the user's home directory; this
is a bug.
If set to ‘ignore
’, the
shell tries to construct a current directory relative to the current
directory before the link was crossed. This means that
cd
cd ..
If set to ‘expand
’, the
shell tries to fix symbolic links by actually expanding arguments which
look like path names. This affects any command, not just builtins.
Unfortunately, this does not work for hard-to-recognize filenames, such
as those embedded in command options. Expansion may be prevented by
quoting. While this setting is usually the most convenient, it is
sometimes misleading and sometimes confusing when it fails to recognize
an argument which should be expanded. A compromise is to use
‘ignore
’ and use the editor
command normalize-path
(bound by default to
^X-n
) when necessary.
Some examples are in order. First, let's set up some play directories:
> cd /tmp > mkdir from from/src to > ln -s from/src to/dst
Here's the behavior with symlinks
unset,
> cd /tmp/to/dst; echo $cwd /tmp/to/dst > cd ..; echo $cwd /tmp/from
Here's the behavior with symlinks
set
to ‘chase
’,
> cd /tmp/to/dst; echo $cwd /tmp/from/src > cd ..; echo $cwd /tmp/from
Here's the behavior with symlinks
set
to ‘ignore
’,
> cd /tmp/to/dst; echo $cwd /tmp/to/dst > cd ..; echo $cwd /tmp/to
Here's the behavior with symlinks
set
to ‘expand
’.
> cd /tmp/to/dst; echo $cwd /tmp/to/dst > cd ..; echo $cwd /tmp/to > cd /tmp/to/dst; echo $cwd /tmp/to/dst > cd ".."; echo $cwd /tmp/from > /bin/echo .. /tmp/to > /bin/echo ".." ..
Note that ‘expand
’
expansion:
ignore
’ for
builtins like cd
.tcsh
(+)term
time
time
builtin executes
automatically after each command which takes more than that many CPU
seconds.
If there is a second word, it is used as a format string for
the output of the time
builtin.
(u) The following sequences may be used in the
time
format string:
%U
%S
%E
%P
%W
%X
%D
%K
%M
%F
%R
%I
%O
%r
%s
%k
%w
%c
Only the first four sequences are supported on systems without
BSD resource limit functions. The default time format is
‘%Uu %Ss %E %P %X+%Dk %I+%Oio
%Fpf+%Ww
’ for systems that support resource usage
reporting and ‘%Uu %Ss %E %P
’ for
systems that do not.
Under Sequent's DYNIX/ptx,
‘%X
’,
‘%D
’,
‘%K
’,
‘%r
’, and
‘%s
’ are not available, but the
following additional sequences are:
%Y
%Z
%i
%d
%l
%m
%p
%q
and the default time format is ‘%Uu
%Ss %E %P %I+%Oio %Fpf+%Ww
’.
Note that the CPU percentage can be higher than 100% on multi-processors.
tperiod
(+)periodic
special alias.tty
(+)uid
(+)user
verbose
-v
command line
option.version
(+)tcsh
), origin, release date, vendor, operating
system and machine (see VENDOR
,
OSTYPE
, and MACHTYPE
) and
a comma-separated list of options which were set at compile time. Options
which are set by default in the distribution are noted.
Supported version
options include:
8b
7b
wide
nls
lf
dl
.
’ is put last in
path
for security; default.nd
.
’ is omitted from
path
for security.vi
dtr
bye
bye
is a synonym for logout
and
log
is an alternate name for
watchlog
.al
autologout
is enabled; default.kan
nokanji
shell variable is set.sm
hb
#!interpreter
arg ...
ng
newgrp
builtin is available.rh
REMOTEHOST
environment variable.afs
afsuser
shell
variable or the AFSUSER
environment variable
override your local username if set.An administrator may enter additional strings to indicate differences in the local version.
vimode
(+)wordchars
versus other characters.
If set, various key bindings change behavior to be more
vi(1)-style: word boundaries are
determined by wordchars
versus whitespace versus
other characters; cursor behavior depends upon current vi mode (command,
delete, insert, replace).
This variable is unset by bindkey
-e
and set by bindkey
-v
. vimode
may be
explicitly set or unset by the user after those
bindkey
operations if required.
visiblebell
(+)nobeep
.watch
(+)any
’ all terminals are
watched for the given user and vice versa. Setting
watch
to
(any any)
set watch = (george ttyd1 any console $user any)
reports activity of the user
‘george
’ on
‘ttyd1
’, any user on the console,
and oneself (or a trespasser) on any terminal.
Logins and logouts are checked every 10 minutes by default,
but the first word of watch
can be set to a
number to check every so many minutes. For example,
set watch = (1 any any)
reports any login/logout once every minute. For the impatient,
the log
builtin command triggers a
watch
report at any time. All current logins are
reported (as with the log
builtin) when
watch
is first set.
The who
shell variable controls the
format of watch
reports.
who
(+)watch
messages. The
following sequences are replaced by the given information:
%n
%a
%l
%M
%m
‘%M
’ and
‘%m
’ are available on only systems
that store the remote hostname in /etc/utmp.
If unset,
%n has %a %l from
%m.
%n has %a %l.
wordchars
(+)forward-word
,
backward-word
, etc., editor commands.
If unset, the default value is determined based on the state
of vimode
: if vimode
is
unset, ‘*?_-.[]~=
’ is used as the
default; if vimode
is set,
‘_
’ is used as the default.
AFSUSER
(+)afsuser
shell variable.CLICOLOR_FORCE
ls-F
are normally disabled if
the output is not directed to a terminal. This can be overridden by
setting this variable, which also changes the ls-F
invocation of ls(1) to use
--color=always
instead of
--color=auto
.
Note that color
must be set for this
environment variable to be effective; by itself
CLICOLOR_FORCE
does not enable color
ls-F
.
COMMAND_LINE
tcsh
to the current command line when
invoking programs for the complete
list mode
‘`...`
’. See
complete
in
Builtin commands.COLUMNS
DISPLAY
autologout
.EDITOR
run-fg-editor
editor command if the the
editors
shell variable is unset. See also the
VISUAL
environment variable.GROUP
(+)group
shell variable.HOME
home
shell variable.HOST
(+)HOSTTYPE
(+)HPATH
(+):
’-separated
list of directories in which the run-help
editor
command looks for command documentation.LANG
LC_CTYPE
LINES
LSCOLORS
ls-F
(along with
LS_COLORS
). This variable is used by some BSD
versions of ls(1).
On tcsh
startup,
LS_COLORS
takes priority over
LSCOLORS
. If both
LSCOLORS
or LS_COLORS
are setenv
, the most recent
setenv
is used. If
LSCOLORS
is unsetenv
while LS_COLORS
is still
setenv
, then LS_COLORS
is parsed again (with any warnings suppressed) to reapply its
settings.
This variable is a 22 character string containing a concatenation of 11 pairs of the format fb, where f is the foreground color and b is the background color. If fewer than 11 pairs are provided, default colors are used for the remaining entries. If more than 11 pairs are provided, the extra values are ignored.
The order of the color attribute pairs to the equivalent
LS_COLORS
variable, the file type, and default
color, is as follows:
Index | Var | File type. [Default color] |
1 | di |
Directory. [Bold blue] |
2 | ln |
Symbolic link. [Bold cyan] |
3 | so |
Socket. [Bold magenta] |
4 | pi |
Named pipe (FIFO). [Yellow (or brown)] |
5 | ex |
Executable file. [Bold green] |
6 | bd |
Block device. [Bold yellow] |
7 | cd |
Character device. [Bold yellow] |
8 | su |
Setuid file. [White on red] |
9 | sg |
Setgid file. [Black on yellow] |
10 | tw |
Sticky and other writable directory. [Black on green] |
11 | ow |
Other writable but not sticky directory. [Blue on green] |
The color code designators are as follows:
a
b
c
d
e
f
g
h
A
B
C
D
E
F
G
H
x
Note that the above are standard ANSI colors. The actual display may differ depending on the color capabilities of the terminal in use.
The default colors are as per the color variables in
LS_COLORS
, and are not the same default colors
as those used by some BSD versions of
ls(1).
LS_COLORS
ls-F
(along with
LSCOLORS
). This variable is used by the GNU
coreutils version of ls(1) and may be setup
by dircolors(1).
On tcsh
startup,
LS_COLORS
takes priority over
LSCOLORS
. If both
LSCOLORS
or LS_COLORS
are setenv
, the most recent
setenv
is used. If
LS_COLORS
is unsetenv
while LSCOLORS
is still
setenv
, then LSCOLORS
is
parsed again (with any warnings suppressed) to reapply its settings.
The format of this variable is reminiscent of the
termcap(5) file format; a
‘:
’-separated
list of expressions of the form
"
xx=
value"
or
"*
ext=
value"
.
The first form
"
xx=
value"
,
where
"
xx"
is a two-character variable name, supports the following variables,
their associated default ISO 6429 color code or escape sequences, and
file type:
Var | Default | File type. [Default color] |
no |
0 |
Normal (non-filename) text. |
fi |
0 |
Regular file. |
di |
01;34 |
Directory. [Bold blue] |
ln |
01;36 |
Symbolic link. [Bold cyan] |
pi |
33 |
Named pipe (FIFO). [Yellow (or brown)] |
so |
01;35 |
Socket. [Bold magenta] |
do |
01;35 |
Door. [Bold magenta] |
bd |
01;33 |
Block device. [Bold yellow] |
cd |
01;33 |
Character device. [Bold yellow] |
ex |
01;32 |
Executable file. [Bold green] |
mi |
(none) | Missing file (orphaned symbolic link target). Defaults to
fi . |
or |
(none) | Orphaned (broken) symbolic link. Defaults to
ln . |
lc |
^[[ |
Left code. |
rc |
m |
Right code. |
ec |
(none) | End code. Replaces
lc +no +rc . |
su |
37;41 |
Setuid file. [White on red] |
sg |
30;43 |
Setgid file. [Black on yellow] |
tw |
30;42 |
Sticky and other writable directory. [Black on green] |
ow |
34;42 |
Other writable but not sticky directory. [Blue on green] |
st |
37;44 |
Sticky but not other writable directory. [White on blue] |
mh |
(none) | File with multiple hard links. |
You need to include only the variables you want to change from the default.
The second form
"*
ext=
value"
colorizes file names based on extension. For example, using ISO 6429
codes, to color all C-language source files blue you would specify
"*.c=34"
. This would color all files
ending in ‘.c
’ in blue foreground
(34) color.
Control characters can be written either in C-style-escaped
notation, or in stty-like ^-notation. The C-style notation adds
‘^[
’ for Escape,
‘_
’ for a normal space character,
and ‘?
’ for Delete. In addition,
the ‘^[
’ escape character can be
used to override the default interpretation of
‘^[
’,
‘^
’,
‘:
’, and
‘=
’.
Each filename will be output to the terminal as
lc
color-code rc
filename ec
If the ‘ec
’ code is
undefined, the sequence
lc no rc
The left code (‘lc
’),
right code (‘rc
’), and end codes
(‘ec
’) are provided so you don't
have to type common parts over and over again and to support weird
terminals; you will generally not need to change them at all unless your
terminal does not use ISO 6429 color codes but a different system.
If your terminal uses ISO 6429 color codes, you can compose
the type codes (i.e., all except the
‘lc
’,
‘rc
’, and
‘ec
’ codes) from numerical ISO
6429 color codes separated by ‘;
’.
For example, ‘01;32
’ is bright
green foreground with default background.
The most common ISO 6429 color codes are:
0
1
4
5
30
31
32
33
34
35
36
37
40
41
42
43
44
45
46
47
Not all ISO 6429 color codes will work on all systems or display devices.
A few terminal programs do not recognize the default end code
properly. If all text gets colorized after you do a directory listing,
try changing the ‘no
’ and
‘fi
’ codes from 0 to the numerical
codes for your standard foreground and background colors.
For symbolic links the
‘ln
’ keyword can be set to
‘target
’, which makes the file
color the same as the color of the link target.
MACHTYPE
(+)NOREBIND
(+)self-insert-command
. See
Native Language
System support (+).OSTYPE
(+)PATH
:
’-separated
list of directories in which to look for executables. Equivalent to the
path
shell variable, but in a different
format.PWD
(+)cwd
shell variable, but not
synchronized to it; updated only after an actual directory change.REMOTEHOST
(+)version
shell variable.SHLVL
(+)shlvl
shell variable.SYSTYPE
(+)TERM
term
shell variable.TERMCAP
USER
user
shell variable.VENDOR
(+)VISUAL
run-fg-editor
editor command if the the
editors
shell variable is unset. See also the
EDITOR
environment variable.ConvexOS, Stellix and Intel use /etc/cshrc.
NeXTs use /etc/cshrc.std.
A/UX, AMIX, Cray and IRIX have no equivalent in
csh(1), but read this file in
tcsh
anyway.
Solaris 2.x does not have it either, but
tcsh
reads
/etc/.cshrc.
(+)
ConvexOS, Stellix and Intel use /etc/login.
NeXTs use /etc/login.std.
Solaris 2.x uses /etc/.login.
A/UX, AMIX, Cray and IRIX use /etc/cshrc.
This manual uses ‘~/.tcshrc’ to mean “~/.tcshrc or, if ~/.tcshrc is not found, ~/.cshrc”.
savehist
is set, but see also
histfile
.The shell may be compiled to read
~/.login before instead of after
~/.tcshrc and
~/.history; see the
version
shell variable.
savedirs
is set, but see also
dirsfile
.ConvexOS, Stellix and Intel use /etc/logout. NeXTs use /etc/logout.std.
A/UX, AMIX, Cray and IRIX have no equivalent in
csh(1), but read this file in
tcsh
anyway.
Solaris 2.x does not have it either, but
tcsh
reads /etc/.logout.
(+)
#
’.<<
’.The order in which startup files are read may differ if the shell
was so compiled; see Startup and
shutdown and the version
shell variable.
This manual describes tcsh
as a single
entity, but experienced csh(1) users will
want to pay special attention to tcsh
's new
features.
A command-line editor, which supports emacs(1)-style or vi(1)-style key bindings. See The command-line editor (+) and Editor commands (+).
Programmable, interactive word completion and listing. See
Completion and listing
(+) and the complete
and
uncomplete
builtin commands.
Spelling correction (+) of filenames, commands and variables.
Editor commands (+)
which perform other useful functions in the middle of typed commands,
including documentation lookup (run-help
), quick
editor restarting (run-fg-editor
), and command
resolution (which-command
).
An enhanced history mechanism. Events in the history list are
time-stamped. See also the history
command and its
associated shell variables, the previously undocumented
‘#
’ event specifier and new modifiers
under History substitution,
the down-history
,
expand-history
,
history-search-backward
,
history-search-forward
,
i-search-back
, i-search-fwd
,
toggle-literal-history
,
vi-search-back
,
vi-search-fwd
, and
up-history
editor commands and the
histlit
shell variable.
Enhanced directory parsing and directory stack handling. See the
cd
, pushd
,
popd
, and dirs
commands and
their associated shell variables, the description of
Directory stack
substitution (+), the dirstack
,
owd
, and symlinks
shell
variables and the normalize-command
and
normalize-path
editor commands.
Negation in glob-patterns. See Filename substitution.
New File inquiry
operators and a filetest
builtin which uses
them.
A variety of Automatic, periodic and timed events (+) including scheduled events, special aliases, automatic logout and terminal locking, command timing and watching for logins and logouts.
Support for the Native Language System (see
Native Language
System support (+)), OS variant features (see
OS variant support (+) and
the echo_style
shell variable) and system-dependent
file locations (see FILES).
Extensive terminal-management capabilities. See Terminal management (+).
New builtin commands including builtins
,
hup
, ls-F
,
newgrp
, printenv
,
which
, and where
.
New variables that make useful information easily available to the
shell. See the gid
, loginsh
,
oid
, shlvl
,
tcsh
, tty
,
uid
, and version
shell
variables and the HOST
,
REMOTEHOST
, VENDOR
,
OSTYPE
, and MACHTYPE
environment variables.
A new syntax for including useful information in the prompt string
(see prompt
), and special prompts for loops and
spelling correction (see prompt2
and
prompt3
).
Read-only variables. See Variable substitution.
In 1964, DEC produced the PDP-6. The PDP-10 was a later re-implementation. It was re-christened the DECsystem-10 in 1970 or so when DEC brought out the second model, the KI10.
TENEX was created at Bolt, Beranek & Newman (a Cambridge, Massachusetts think tank) in 1972 as an experiment in demand-paged virtual memory operating systems. They built a new pager for the DEC PDP-10 and created the OS to go with it. It was extremely successful in academia.
In 1975, DEC brought out a new model of the PDP-10, the KL10; they intended to have only a version of TENEX, which they had licensed from BBN, for the new box. They called their version TOPS-20 (their capitalization is trademarked). A lot of TOPS-10 users (`The OPerating System for PDP-10') objected; thus DEC found themselves supporting two incompatible systems on the same hardware--but then there were 6 on the PDP-11!
TENEX, and TOPS-20 to version 3, had command completion via a user-code-level subroutine library called ULTCMD. With version 3, DEC moved all that capability and more into the monitor (`kernel' for you Unix types), accessed by the COMND% JSYS (`Jump to SYStem' instruction, the supervisor call mechanism [are my IBM roots also showing?]).
The creator of tcsh was impressed by this feature and several others of TENEX and TOPS-20, and created a version of csh which mimicked them.
The system limits argument lists to ARG_MAX characters.
The number of arguments to a command which involves filename expansion is limited to 1/6th the number of characters allowed in an argument list.
Command substitutions may substitute no more characters than are allowed in an argument list.
To detect looping, the shell restricts the number of
alias
substitutions on a single line to 20.
csh(1), dircolors(1), emacs(1), ls(1), newgrp(1), setpath(1), sh(1), stty(1), su(1), tset(1), vi(1), x(1), access(2), execve(2), fork(2), killpg(2), pipe(2), setrlimit(2), sigvec(2), stat(2), umask(2), vfork(2), wait(2), malloc(3), setlocale(3), tty(4), a.out(5), termcap(5), environ(7), termio(7), Introduction to the C Shell
This manual documents tcsh 6.24.13 (Astron) 2024-06-12.
ls-F
and which
builtins and
numerous bug fixes, modifications and speedups.tcsh
.wordchars
.vi
mode cleanup.autolist
and ambiguous completion listing.printprompt
() fixes and additions.prompt3
.ampm
, settc
, and
telltc
.shlvl
, Mach support,
correct-line
, 8-bit printing.autolist
beeping options, modified the history
search to search for the whole string from the beginning of the line to
the cursor.$''
’ (dollar-single-quotes).vi
fixes and vi
delete command.where
.prompt
. Added
ellipsis
and rprompt
.
vimode
improvements. Manual page
improvements.ignoreeof=
n addition, and
various other portability changes and bug fixes.complete-word-fwd
and
complete-word-back
.Bryan Dunlap, Clayton Elwell, Karl Kleinpaste, Bob Manson, Steve Romig, Diana Smetters, Bob Sutterfield, Mark Verber, Elizabeth Zwicky and all the other people at Ohio State for suggestions and encouragement
All the people on the net, for putting up with, reporting bugs in, and suggesting new additions to each and every version
Richard M. Alderson III, for writing the T in tcsh section
When a suspended command is restarted, the shell prints the directory it started in if this is different from the current directory. This can be misleading (i.e., wrong) as the job may have changed directories internally.
Shell builtin functions are not stoppable/restartable. Command sequences of the form
a ; b ; c
b
’, the shell will then immediately
execute ‘c
’. This is especially
noticeable if this expansion results from an alias
. It
suffices to place the sequence of commands in
‘()
’'s to force it to a subshell, i.e.,
( a ; b ; c )
Control over tty output after processes are started is primitive; perhaps this will inspire someone to work on a good virtual terminal interface. In a virtual terminal interface much more interesting things could be done with output control.
Alias substitution is most often used to clumsily simulate shell procedures; shell procedures should be provided rather than aliases.
Control structures should be parsed rather than being recognized
as built-in commands. This would allow control commands to be placed
anywhere, to be combined with ‘|
’, and
to be used with ‘&
’ and
‘;
’ metasyntax.
foreach
doesn't ignore here documents when
looking for its end
.
It should be possible to use the
‘:
’ modifiers on the output of command
substitutions.
The screen update for lines longer than the screen width is very
poor if the terminal cannot move the cursor up (i.e., terminal type
‘dumb
’).
HPATH
and NOREBIND
don't need to be environment variables.
Glob-patterns which do not use
‘?
’,
‘*
’, or
‘[]
’, or which use
‘{}
’ or
‘~
’ are not negated correctly.
The single-command form of if
does output
redirection even if the expression is false and the command is not
executed.
ls-F
includes file identification
characters when sorting filenames and does not handle control characters in
filenames well. It cannot be interrupted.
Command substitution supports multiple commands and conditions,
but not cycles or backward goto
s.
Report bugs at https://bugs.astron.com/ preferably with fixes. If you want to help maintain and test tcsh, add yourself to the mailing list in https://mailman.astron.com/mailman/listinfo/tcsh
June 12, 2024 | Astron 6.24.13 |