From 3cdca255a4af43bbe8d48791b499f95d3601d0d4 Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Tue, 18 Jun 2024 22:16:06 +0200 Subject: [PATCH] shuf: add Dutch translation and align pages (#13044) * shuf: add Dutch translation and align pages * Update shuf.md Co-authored-by: Jack Lin * Update shuf.md Co-authored-by: Jack Lin --------- Co-authored-by: Jack Lin --- pages.es/osx/shuf.md | 4 ++-- pages.id/osx/shuf.md | 4 ++-- pages.nl/common/shuf.md | 20 ++++++++++++++++++++ pages.nl/osx/shuf.md | 20 ++++++++++++++++++++ pages.zh/osx/shuf.md | 6 +++--- pages/common/shuf.md | 6 +++--- pages/osx/shuf.md | 8 ++++---- 7 files changed, 54 insertions(+), 14 deletions(-) create mode 100644 pages.nl/common/shuf.md create mode 100644 pages.nl/osx/shuf.md diff --git a/pages.es/osx/shuf.md b/pages.es/osx/shuf.md index 98d2b6e546..ce4bf5d0b8 100644 --- a/pages.es/osx/shuf.md +++ b/pages.es/osx/shuf.md @@ -9,7 +9,7 @@ - Sólo muestra las 5 primeras entradas del resultado: -`shuf --head-count={{5}} {{nombre_archivo}}` +`shuf --head-count=5 {{nombre_archivo}}` - Escribe el resultado en otro archivo: @@ -17,4 +17,4 @@ - Genera números aleatorios en el rango 1-10: -`shuf --input-range={{1-10}}` +`shuf --input-range=1-10` diff --git a/pages.id/osx/shuf.md b/pages.id/osx/shuf.md index 71d7058251..b80e3a11da 100644 --- a/pages.id/osx/shuf.md +++ b/pages.id/osx/shuf.md @@ -9,7 +9,7 @@ - Hanya mengoutputkan 5 entri dari hasil: -`shuf --head-count={{5}} {{nama_file}}` +`shuf --head-count=5 {{nama_file}}` - Menuliskan output ke file lain: @@ -17,4 +17,4 @@ - Men-generate angka acak dari 1-10: -`shuf --input-range={{1-10}}` +`shuf --input-range=1-10` diff --git a/pages.nl/common/shuf.md b/pages.nl/common/shuf.md new file mode 100644 index 0000000000..8e81a5b6af --- /dev/null +++ b/pages.nl/common/shuf.md @@ -0,0 +1,20 @@ +# shuf + +> Genereer willekeurige permutaties. +> Meer informatie: . + +- Wijzig willekeurig de volgorde van regels in een bestand en toon het resultaat: + +`shuf {{pad/naar/bestand}}` + +- Toon alleen de eerste 5 regels van het resultaat: + +`shuf --head-count=5 {{pad/naar/bestand}}` + +- Schrijf de uitvoer naar een ander bestand: + +`shuf {{pad/naar/invoer_bestand}} --output={{pad/naar/uitvoer_bestand}}` + +- Genereer 3 willekeurige getallen in het bereik van 1 tot 10 (inclusief): + +`shuf --head-count=3 --input-range=1-10 --repeat` diff --git a/pages.nl/osx/shuf.md b/pages.nl/osx/shuf.md new file mode 100644 index 0000000000..3836724501 --- /dev/null +++ b/pages.nl/osx/shuf.md @@ -0,0 +1,20 @@ +# shuf + +> Genereer willekeurige permutaties. +> Meer informatie: . + +- Wijzig willekeurig de volgorde van regels in een bestand en toon het resultaat: + +`shuf {{pad/naar/bestand}}` + +- Toon alleen de eerste 5 regels van het resultaat: + +`shuf --head-count=5 {{pad/naar/bestand}}` + +- Schrijf de uitvoer naar een ander bestand: + +`shuf {{pad/naar/invoer_bestand}} --output={{pad/naar/uitvoer_bestand}}` + +- Genereer willekeurige getallen in het bereik van 1 tot 10: + +`shuf --input-range=1-10` diff --git a/pages.zh/osx/shuf.md b/pages.zh/osx/shuf.md index c2997180a1..c575546844 100644 --- a/pages.zh/osx/shuf.md +++ b/pages.zh/osx/shuf.md @@ -9,12 +9,12 @@ - 只输出结果的前 5 条: -`shuf --head-count={{5}} {{文件名}}` +`shuf --head-count=5 {{路径/到/文件}}` - 将结果输出写入另一个文件: -`shuf {{文件名}} --output={{输出_文件名}}` +`shuf {{路径/到/输入文件}} --output={{路径/到/输出文件}}` - 生成范围(1-10)内的随机数: -`shuf --input-range={{1-10}}` +`shuf --input-range=1-10` diff --git a/pages/common/shuf.md b/pages/common/shuf.md index 6cc9cb0496..6fffc8139c 100644 --- a/pages/common/shuf.md +++ b/pages/common/shuf.md @@ -9,12 +9,12 @@ - Only output the first 5 entries of the result: -`shuf --head-count={{5}} {{path/to/file}}` +`shuf --head-count=5 {{path/to/file}}` - Write the output to another file: -`shuf {{path/to/input}} --output={{path/to/output}}` +`shuf {{path/to/input_file}} --output={{path/to/output_file}}` - Generate 3 random numbers in the range 1-10 (inclusive): -`shuf --head-count={{3}} --input-range={{1-10}} --repeat` +`shuf --head-count=3 --input-range=1-10 --repeat` diff --git a/pages/osx/shuf.md b/pages/osx/shuf.md index 011f92043e..896da19717 100644 --- a/pages/osx/shuf.md +++ b/pages/osx/shuf.md @@ -5,16 +5,16 @@ - Randomize the order of lines in a file and output the result: -`shuf {{filename}}` +`shuf {{path/to/file}}` - Only output the first 5 entries of the result: -`shuf --head-count={{5}} {{filename}}` +`shuf --head-count=5 {{path/to/file}}` - Write output to another file: -`shuf {{filename}} --output={{output_filename}}` +`shuf {{path/to/input_file}} --output={{ath/to/output_file}}` - Generate random numbers in the range 1 to 10: -`shuf --input-range={{1-10}}` +`shuf --input-range=1-10`