1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-09-10 06:53:50 +02:00

$: add Dutch translation (#14213)

This commit is contained in:
Sebastiaan Speck 2024-10-16 09:09:46 +02:00 committed by GitHub
parent 818ada1754
commit b5e0ad10ea
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

24
pages.nl/common/$.md Normal file
View file

@ -0,0 +1,24 @@
# Dollar sign
> Breid een Bash-variabele uit.
> Meer informatie: <https://gnu.org/software/bash/manual/bash.html#Shell-Variables>.
- Toon een variabele:
`echo ${{VARIABLE}}`
- Toon de exitstatus van het vorige commando:
`echo $?`
- Toon een willekeurig getal tussen 0 en 32767:
`echo $RANDOM`
- Toon een van de promptstrings:
`echo ${{PS1|PS2|PS3|PS4}}`
- Breid uit met de uitvoer van `command` en voer het uit. Hetzelfde als het commando tussen backticks plaatsen:
`$({{command}})`