History substitution in the C shell
History substitution lets you modify individual words from previous commands to create new commands. History substitution makes it easy to repeat commands, repeat the arguments of a previous command in the current command, or fix spelling mistakes in the previous command with little typing.
History substitutions begin with the exclamation mark
(!) character and can appear anywhere on the command line,
provided they do not nest (in other words, a history substitution cannot contain
another history substitution). You can precede the ! with
a \ to cancel the exclamation point's special meaning. In
addition, if you place the ! before a blank, tab, newline
character, =, or (, history substitution
does not occur.
History substitutions also occur when you begin an
input line with a carat (^). The shell echoes any input line
containing history substitutions at the workstation before it executes that
line.