Browse Source

sh: add page

Hayden Schiff 9 years ago
parent
commit
a8150aafd2
1 changed files with 20 additions and 0 deletions
  1. 20 0
      pages/common/sh.md

+ 20 - 0
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`