Bourne Shell - Execute Commands | Online Free DevTools by Hexmos
Execute commands using Bourne Shell, the standard command language interpreter. Run scripts and manage shell sessions easily. Free online tool, no registration required.
sh
Bourne shell, the standard command language interpreter. See also:
histexpandfor history expansion. More information: https://manned.org/sh.
- Start an interactive shell session:
sh
- Execute a command and then exit:
sh -c "{{command}}"
- Execute a script:
sh {{path/to/script.sh}}
- Read and execute commands from
stdin:
sh -s