From a53861b54ab69199f72089008def9ed14d94728a Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Fri, 28 Jun 2024 14:40:24 +0200 Subject: [PATCH] stdbuf: add Dutch translation and fix placeholders (#13183) * stdbuf: add Dutch translation and fix placeholders * Apply suggestions from code review --- pages.nl/common/stdbuf.md | 16 ++++++++++++++++ pages/common/stdbuf.md | 6 +++--- 2 files changed, 19 insertions(+), 3 deletions(-) create mode 100644 pages.nl/common/stdbuf.md diff --git a/pages.nl/common/stdbuf.md b/pages.nl/common/stdbuf.md new file mode 100644 index 0000000000..e6da90206e --- /dev/null +++ b/pages.nl/common/stdbuf.md @@ -0,0 +1,16 @@ +# stdbuf + +> Voer een commando uit met aangepaste buffering operaties voor de standaard streams. +> Meer informatie: . + +- Verander de buffer grootte van `stdin` naar 512 KiB: + +`stdbuf --input=512K {{commando}}` + +- Verander de buffer van `stdout` naar lijn-buffering: + +`stdbuf --output=L {{commando}}` + +- Verander de buffer van `stderr` naar ongebufferd: + +`stdbuf --error=0 {{commando}}` diff --git a/pages/common/stdbuf.md b/pages/common/stdbuf.md index adf41cec12..2330a7978f 100644 --- a/pages/common/stdbuf.md +++ b/pages/common/stdbuf.md @@ -5,12 +5,12 @@ - Change `stdin` buffer size to 512 KiB: -`stdbuf --input={{512K}} {{command}}` +`stdbuf --input=512K {{command}}` - Change `stdout` buffer to line-buffered: -`stdbuf --output={{L}} {{command}}` +`stdbuf --output=L {{command}}` - Change `stderr` buffer to unbuffered: -`stdbuf --error={{0}} {{command}}` +`stdbuf --error=0 {{command}}`