diff options
author | Milo Gilad <milogaccnts@gmail.com> | 2017-08-25 10:18:31 -0400 |
---|---|---|
committer | Milo Gilad <milogaccnts@gmail.com> | 2017-08-25 10:18:31 -0400 |
commit | a6c3a64a4c897a1f7e7acfbfe6318866317770ad (patch) | |
tree | 28b0d35aaf2cdc3e968e182f1de4d5c5e596a970 /tcsh.html.markdown | |
parent | 1abae4b25de43e05df3ba225986997bc72eb3f8a (diff) | |
parent | bce21489d8d7e3a3f3d4ede2154dba082647296e (diff) |
Merge branch 'master' of github.com:adambard/learnxinyminutes-docs
Diffstat (limited to 'tcsh.html.markdown')
-rw-r--r-- | tcsh.html.markdown | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tcsh.html.markdown b/tcsh.html.markdown index a95a84b0..80411ea6 100644 --- a/tcsh.html.markdown +++ b/tcsh.html.markdown @@ -2,8 +2,8 @@ language: tcsh filename: LearnTCSH.csh contributors: - - ["Nicholas Christopoulos", "https://github.com/nereusx"] -lang: en + - ["Nicholas Christopoulos", "https://github.com/nereusx"] + --- tcsh ("tee-see-shell") is a Unix shell based on and compatible with the C shell (csh). It is essentially the C shell with programmable command-line completion, command-line editing, @@ -592,7 +592,7 @@ while ( $#lst ) shift lst end echo 'options =' $options -echo 'paramaters =' $params +echo 'parameters =' $params #### REPEAT # Syntax: repeat count command |