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

echo: add Dutch translation (#7258)

This commit is contained in:
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

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}}"`