2020-11-01 14:35:52 +00:00
|
|
|
# bash
|
|
|
|
|
2023-10-20 07:17:14 +01:00
|
|
|
> Bourne-Again SHell, `sh`-ondersteunende commandoregel-interpreteerder.
|
|
|
|
> Bekijk ook: `zsh`, `histexpand` (history expansion).
|
2023-12-29 12:11:32 +00:00
|
|
|
> Meer informatie: <https://www.gnu.org/software/bash/>.
|
2020-11-01 14:35:52 +00:00
|
|
|
|
2023-10-20 07:17:14 +01:00
|
|
|
- Start een interactieve shell sessie:
|
2020-11-01 14:35:52 +00:00
|
|
|
|
|
|
|
`bash`
|
|
|
|
|
2023-10-20 07:17:14 +01:00
|
|
|
- Start een interactieve shell sessie zonder het laden van startup configuratie:
|
2020-11-01 14:35:52 +00:00
|
|
|
|
2023-10-20 07:17:14 +01:00
|
|
|
`bash --norc`
|
|
|
|
|
|
|
|
- Voer een [c]ommando uit:
|
|
|
|
|
|
|
|
`bash -c "{{echo 'bash is executed'}}"`
|
2020-11-01 14:35:52 +00:00
|
|
|
|
|
|
|
- Voer commando's van bestand uit:
|
|
|
|
|
2023-10-20 07:17:14 +01:00
|
|
|
`bash {{pad/naar/script.sh}}`
|
2020-11-01 14:35:52 +00:00
|
|
|
|
|
|
|
- Voer commando's van bestand uit, en print alle uitgevoerde commando's naar de terminal:
|
|
|
|
|
2023-10-20 07:17:14 +01:00
|
|
|
`bash -x {{pad/naar/script.sh}}`
|
2020-11-01 14:35:52 +00:00
|
|
|
|
|
|
|
- Voer commando's van bestand uit, en stop bij de eerste fout:
|
|
|
|
|
2023-10-20 07:17:14 +01:00
|
|
|
`bash -e {{pad/naar/script.sh}}`
|
2020-11-01 14:35:52 +00:00
|
|
|
|
2023-07-02 14:12:01 +01:00
|
|
|
- Voer commando's van `stdin` uit:
|
2020-11-01 14:35:52 +00:00
|
|
|
|
2023-10-20 07:17:14 +01:00
|
|
|
`{{echo "echo 'bash is executed'"}} | bash`
|
2020-11-01 14:35:52 +00:00
|
|
|
|
2023-10-20 07:17:14 +01:00
|
|
|
- Start een beperkte shell sessie:
|
2020-11-01 14:35:52 +00:00
|
|
|
|
2023-10-20 07:17:14 +01:00
|
|
|
`bash -r`
|