sh: add page

This commit is contained in:
Hayden Schiff 2016-02-22 20:11:29 -05:00
parent b566deb4ff
commit a8150aafd2

20
pages/common/sh.md Normal file
View File

@ -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`