mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-12 04:54:52 +03:00
230 B
230 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