1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-25 00:35:24 +02:00

uniq: add Dutch translation (#13164)

This commit is contained in:
Sebastiaan Speck 2024-06-26 17:11:48 +02:00 committed by GitHub
parent 450c49bb4d
commit 57ebed19e8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

25
pages.nl/common/uniq.md Normal file
View file

@ -0,0 +1,25 @@
# uniq
> Geef de unieke regels uit een invoer of bestand weer.
> Omdat het geen herhaalde regels detecteert tenzij ze naast elkaar staan, moeten we ze eerst sorteren.
> Meer informatie: <https://www.gnu.org/software/coreutils/uniq>.
- Toon elke regel één keer:
`sort {{pad/naar/bestand}} | uniq`
- Toon alleen unieke regels:
`sort {{pad/naar/bestand}} | uniq -u`
- Toon alleen dubbele regels:
`sort {{pad/naar/bestand}} | uniq -d`
- Toon het aantal voorkomens van elke regel samen met die regel:
`sort {{pad/naar/bestand}} | uniq -c`
- Toon het aantal voorkomens van elke regel, gesorteerd op meest frequent:
`sort {{pad/naar/bestand}} | uniq -c | sort -nr`