mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
bash: update Dutch translation (#11005)
This commit is contained in:
parent
11c4e7db0e
commit
a11ecac059
1 changed files with 15 additions and 11 deletions
|
@ -1,33 +1,37 @@
|
|||
# bash
|
||||
|
||||
> Bourne-Again SHell.
|
||||
> `sh`-ondersteunende commandoregel-interpreteerder.
|
||||
> Bourne-Again SHell, `sh`-ondersteunende commandoregel-interpreteerder.
|
||||
> Bekijk ook: `zsh`, `histexpand` (history expansion).
|
||||
> Meer informatie: <https://gnu.org/software/bash/>.
|
||||
|
||||
- Start interactieve shell:
|
||||
- Start een interactieve shell sessie:
|
||||
|
||||
`bash`
|
||||
|
||||
- Voer een commando uit:
|
||||
- Start een interactieve shell sessie zonder het laden van startup configuratie:
|
||||
|
||||
`bash -c "{{commando}}"`
|
||||
`bash --norc`
|
||||
|
||||
- Voer een [c]ommando uit:
|
||||
|
||||
`bash -c "{{echo 'bash is executed'}}"`
|
||||
|
||||
- Voer commando's van bestand uit:
|
||||
|
||||
`bash {{bestand.sh}}`
|
||||
`bash {{pad/naar/script.sh}}`
|
||||
|
||||
- Voer commando's van bestand uit, en print alle uitgevoerde commando's naar de terminal:
|
||||
|
||||
`bash -x {{bestand.sh}}`
|
||||
`bash -x {{pad/naar/script.sh}}`
|
||||
|
||||
- Voer commando's van bestand uit, en stop bij de eerste fout:
|
||||
|
||||
`bash -e {{bestand.sh}}`
|
||||
`bash -e {{pad/naar/script.sh}}`
|
||||
|
||||
- Voer commando's van `stdin` uit:
|
||||
|
||||
`bash -s`
|
||||
`{{echo "echo 'bash is executed'"}} | bash`
|
||||
|
||||
- Print de versieinformatie van bash (gebruik `echo $BASH_VERSION` om alleen de versie te krijgen zonder licentie):
|
||||
- Start een beperkte shell sessie:
|
||||
|
||||
`bash --version`
|
||||
`bash -r`
|
||||
|
|
Loading…
Add table
Reference in a new issue