![]() 8.3. SyntaxThis section describes the many symbols used by tcsh. The topics are arranged as follows:
8.3.1. Special Files
8.3.2. Filename Metacharacters
8.3.3. QuotingQuoting disables a character's special meaning and allows it to be used literally, as itself. The characters in the following table have special meaning to tcsh.
The characters that follow can be used for quoting:
8.3.3.1. Examples% echo 'Single quotes "protect" double quotes' Single quotes "protect" double quotes % echo "Well, isn't that "\""special?"\" Well, isn't that "special"? % echo "You have `ls|wc -l` files in `pwd`" You have 43 files in /home/bob % echo The value of \$x is $x The value of $x is 100 8.3.4. Command Forms8.3.5. Redirection Forms
The usual input source or output destination can be changed with redirection commands listed in the following sections. 8.3.5.1. Simple redirection
8.3.5.2. Multiple redirection
8.3.5.3. Examples% cat part1 > book Copy part1 to book % cat part2 part3 >> book Append parts 2 and 3 to same file as part1 % mail tim < report Take input to message from report % cc calc.c >& error_out Store all messages, including errors % cc newcalc.c >&! error_out Overwrite old file % grep Unix ch* |& pr Pipe all messages, including errors % (find / -print > filelist) >& no_access Separate error messages from list of files % sed 's/^/XX /' << "END_ARCHIVE" Supply text right after command This is often how a shell archive is "wrapped", bundling text for distribution. You would normally run sed from a shell program, not from the command line. "END_ARCHIVE" ![]() Copyright © 2003 O'Reilly & Associates. All rights reserved. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|