From 8f95eaa45db93069f018b849be85c86729855a46 Mon Sep 17 00:00:00 2001 From: Bharadwaj Raju Date: Fri, 19 Feb 2016 22:23:19 +0530 Subject: [PATCH] Add page for zsh --- pages/common/zsh.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pages/common/zsh.md diff --git a/pages/common/zsh.md b/pages/common/zsh.md new file mode 100644 index 0000000000..aeaee72e80 --- /dev/null +++ b/pages/common/zsh.md @@ -0,0 +1,20 @@ +# zsh + +> Z SHell. +> `bash` and `sh`-compatible command line interpreter. + +- Start interactive command line interpreter: + +`zsh` + +- Execute command passed as parameter: + +`zsh -c {{command}}` + +- Run commands from file (script): + +`zsh {{file}}` + +- Run commands from file and print them as they are executed: + +`zsh -x {{file}}`