2025-07-24 22:27:13 -06:00
|
|
|
# sh
|
|
|
|
|
|
|
|
|
|
> Bourne shell, de standaard opdrachttaalinterpreter.
|
2026-02-18 06:55:01 -07:00
|
|
|
> Zie ook: `!`, `^`.
|
2025-07-24 22:27:13 -06:00
|
|
|
> Meer informatie: <https://manned.org/sh>.
|
|
|
|
|
|
|
|
|
|
- Start een interactieve shell sessie:
|
|
|
|
|
|
|
|
|
|
`sh`
|
|
|
|
|
|
|
|
|
|
- Voer een commando uit en sluit af:
|
|
|
|
|
|
|
|
|
|
`sh -c "{{commando}}"`
|
|
|
|
|
|
|
|
|
|
- Voer een script uit:
|
|
|
|
|
|
|
|
|
|
`sh {{pad/naar/script.sh}}`
|
|
|
|
|
|
|
|
|
|
- Lees en voer commando's uit van `stdin`:
|
|
|
|
|
|
|
|
|
|
`sh -s`
|