shuf: add Dutch translation and align pages (#13044)

* shuf: add Dutch translation and align pages

* Update shuf.md

Co-authored-by: Jack Lin <blueskyson1401@gmail.com>

* Update shuf.md

Co-authored-by: Jack Lin <blueskyson1401@gmail.com>

---------

Co-authored-by: Jack Lin <blueskyson1401@gmail.com>
This commit is contained in:
Sebastiaan Speck
2024-06-18 22:16:06 +02:00
committed by GitHub
parent 9f5612ec15
commit 3cdca255a4
7 changed files with 54 additions and 14 deletions

20
pages.nl/common/shuf.md Normal file
View File

@@ -0,0 +1,20 @@
# shuf
> Genereer willekeurige permutaties.
> Meer informatie: <https://www.gnu.org/software/coreutils/shuf>.
- 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`

20
pages.nl/osx/shuf.md Normal file
View File

@@ -0,0 +1,20 @@
# shuf
> Genereer willekeurige permutaties.
> Meer informatie: <https://keith.github.io/xcode-man-pages/shuf.1.html>.
- 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`