diff --git a/pages/common/sh.md b/pages/common/sh.md new file mode 100644 index 000000000..699823a3c --- /dev/null +++ b/pages/common/sh.md @@ -0,0 +1,20 @@ +# sh + +> Bourne shell. +> The standard command language interpreter. + +- Start interactive shell: + +`sh` + +- Execute a command: + +`sh -c {{command}}` + +- Run commands from a file: + +`sh {{file.sh}}` + +- Run commands from STDIN: + +`sh -s`