7z, adb, bash, cargo, cd: add Dutch translation (#4913)

This commit is contained in:
Charlie
2020-11-01 15:35:52 +01:00
committed by GitHub
parent 61ad03ec4d
commit b854a40530
5 changed files with 153 additions and 0 deletions

33
pages.nl/common/bash.md Normal file
View File

@@ -0,0 +1,33 @@
# bash
> Bourne-Again SHell.
> `sh`-ondersteunende commandoregel-interpreteerder.
> Meer informatie: <https://gnu.org/software/bash>.
- 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`