Differences

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

Link to this comparison view

tcsh [2013/06/03 14:59]
tcsh [2013/06/03 14:59] (current)
Line 1: Line 1:
 +====== #!/bin/tcsh ======
  
 +  * [[FreeBSD]]
 +  * [[bash]]
 +  * [[csh]]
 +  * [[ksh]]
 +  * [[sh]]
 +  * [[zsh]]
 +
 +  * [[http://​www.mcsr.olemiss.edu/​unixhelp/​shell/​oview1.1.html|Summary of shell facilities]]
 +
 +== Set environment variables ==
 +
 +<​code>​
 +setenv BATCH yes
 +</​code>​
 +
 +== Create an alias ==
 +
 +<​code>​
 +alias ls "ls -G"
 +alias ll "ls -lAFG"
 +</​code>​