From 2fffd9d6a173347901c015eae590a8e03e16bc38 Mon Sep 17 00:00:00 2001 From: Emily Grace Seville Date: Mon, 15 Nov 2021 05:35:13 +1000 Subject: [PATCH] tcsh: add page (#7421) --- pages/common/tcsh.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pages/common/tcsh.md diff --git a/pages/common/tcsh.md b/pages/common/tcsh.md new file mode 100644 index 000000000..7554440ed --- /dev/null +++ b/pages/common/tcsh.md @@ -0,0 +1,28 @@ +# tcsh + +> C shell with file name completion and command line editing. +> More information: . + +- Start an interactive shell session: + +`tcsh` + +- Start an interactive shell session without loading startup configs: + +`tcsh -f` + +- Execute a [c]ommand: + +`tcsh -c "{{command}}"` + +- Execute a script: + +`tcsh {{path/to/script.tcsh}}` + +- Check a script for syntax errors: + +`tcsh -n {{path/to/script.tcsh}}` + +- Print the version: + +`tcsh --version`