Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tee: add Dutch translation #13195

Merged
merged 1 commit into from
Jun 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
tee: add Dutch translation
  • Loading branch information
sebastiaanspeck committed Jun 28, 2024
commit 394e073e78c4472b71919be697f940afc0f24dba
20 changes: 20 additions & 0 deletions pages.nl/common/tee.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# tee

> Lees van `stdin` en schrijf naar `stdout` en bestanden (of commando's).
> Meer informatie: <https://www.gnu.org/software/coreutils/tee>.

- Kopieer `stdin` naar elk bestand en ook naar `stdout`:

`echo "voorbeeld" | tee {{pad/naar/bestand}}`

- Voeg toe aan de opgegeven bestanden, overschrijf niet:

`echo "voorbeeld" | tee -a {{pad/naar/bestand}}`

- Toon `stdin` naar de terminal en leid het ook door naar een ander programma voor verdere verwerking:

`echo "voorbeeld" | tee {{/dev/tty}} | {{xargs printf "[%s]"}}`

- Maak een directory genaamd "voorbeeld", tel het aantal tekens in "voorbeeld" en schrijf "voorbeeld" naar de terminal:

`echo "voorbeeld" | tee >(xargs mkdir) >(wc -c)`