Invoking the Shell

A shell command interpreter can be invoked as follows:

 csh [options] [arguments] tcsh [options] [arguments] 

csh and tcsh use syntax resembling C and execute commands from a terminal or a file. Options -n, -v, and -x are useful when debugging scripts.

Options

Arguments

Arguments are assigned, in order, to the positional parameters $1, $2, and so on. If the first argument is an executable script, commands are read from it, and remaining arguments are assigned to $1, $2, and so forth.