techwiki:csh

Differences

This shows you the differences between two versions of the page.


techwiki:csh [2021/08/28 08:52] (current) – created ying
Line 1: Line 1:
 +====== Csh basic ======
 +
 +  * alias and pass parameter <code csh>alias ee 'echo \!:1'</code>
 +    * !! is the whole command line
 +    * !* is all the arguments of the command
 +    * !:1 is the first argument of the command
 +    * !:2 is the second argument of the command
 +    * !$ is the last argument of the command
 +