echo: add Dutch translation (#7258)

beep
Paradact 2021-10-29 01:49:57 +02:00 committed by GitHub
parent 39c87b0358
commit 52649df0b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 24 additions and 0 deletions

24
pages.nl/common/echo.md Normal file
View File

@ -0,0 +1,24 @@
# echo
> Drukt gegeven argumenten af.
> Meer informatie: <https://www.gnu.org/software/coreutils/echo>.
- Druk een tekstbericht af. Let op: aanhalingstekens zijn optimaal:
`echo "{{Hallo Wereld}}"`
- Druk een bericht af met omgevingsvariabelen:
`echo "{{Mijn pad is $PATH}}"`
- Drukt een bericht af zonder te volgen met een nieuwe regel:
`echo -n "{{Hallo Wereld}}"`
- Voeg een bericht aan een bestand toe:
`echo "{{Hallo Wereld}}" >> {{bestand.txt}}`
- Schakel interpretatie van backslash ontkoming in (speciale karakters):
`echo -e "{{kolom 1\kolom 2}}"`