2020-11-01 14:35:52 +00:00
|
|
|
# bash
|
|
|
|
|
|
|
|
> Bourne-Again SHell.
|
|
|
|
> `sh`-ondersteunende commandoregel-interpreteerder.
|
2021-10-01 19:28:01 +01:00
|
|
|
> Meer informatie: <https://gnu.org/software/bash/>.
|
2020-11-01 14:35:52 +00:00
|
|
|
|
|
|
|
- Start interactieve shell:
|
|
|
|
|
|
|
|
`bash`
|
|
|
|
|
|
|
|
- Voer een commando uit:
|
|
|
|
|
|
|
|
`bash -c "{{commando}}"`
|
|
|
|
|
|
|
|
- Voer commando's van bestand uit:
|
|
|
|
|
|
|
|
`bash {{bestand.sh}}`
|
|
|
|
|
|
|
|
- Voer commando's van bestand uit, en print alle uitgevoerde commando's naar de terminal:
|
|
|
|
|
|
|
|
`bash -x {{bestand.sh}}`
|
|
|
|
|
|
|
|
- Voer commando's van bestand uit, en stop bij de eerste fout:
|
|
|
|
|
|
|
|
`bash -e {{bestand.sh}}`
|
|
|
|
|
|
|
|
- Voer commando's van stdin uit:
|
|
|
|
|
|
|
|
`bash -s`
|
|
|
|
|
|
|
|
- Print de versieinformatie van bash (gebruik `echo $BASH_VERSION` om alleen de versie te krijgen zonder licentie):
|
|
|
|
|
|
|
|
`bash --version`
|