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:
parent
39c87b0358
commit
52649df0b3
1 changed files with 24 additions and 0 deletions
24
pages.nl/common/echo.md
Normal file
24
pages.nl/common/echo.md
Normal 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}}"`
|
Loading…
Add table
Reference in a new issue