7z, adb, bash, cargo, cd: add Dutch translation (#4913)
This commit is contained in:
33
pages.nl/common/bash.md
Normal file
33
pages.nl/common/bash.md
Normal 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`
|
Reference in New Issue
Block a user