1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-31 06:18:17 +01:00
tldr/pages/common/sh.md
2016-02-22 20:11:29 -05:00

228 B

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