From 9fe3dbfe408ca893b6f685b346ac2e8617c3b95c Mon Sep 17 00:00:00 2001 From: Emily Grace Seville Date: Sun, 14 Nov 2021 02:01:08 +1000 Subject: [PATCH] csh: add page (#7420) --- pages/common/csh.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pages/common/csh.md diff --git a/pages/common/csh.md b/pages/common/csh.md new file mode 100644 index 0000000000..6e6c3ae43e --- /dev/null +++ b/pages/common/csh.md @@ -0,0 +1,20 @@ +# csh + +> The shell (command interpreter) with C-like syntax. +> More information: . + +- Start an interactive shell session: + +`csh` + +- Start an interactive shell session without loading startup configs: + +`csh -f` + +- Execute a [c]ommand: + +`csh -c "{{command}}"` + +- Execute a script: + +`csh {{path/to/script.csh}}`