1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-01 04:55:46 +02:00
tldr/pages.nl/windows/find.md
Sebastiaan Speck f315ef5e0b
pages.nl/*: update Dutch translations
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2023-11-06 14:02:16 +05:30

20 lines
567 B
Markdown

# find
> Vind een gespecificieerde string in een bestand.
> Meer informatie: <https://learn.microsoft.com/windows-server/administration/windows-commands/find>.
- Vind de regels die een specifieke string bevatten:
`find "{{string}}" {{pad/naar/bestand_of_map}}`
- Laat regels zie die de string niet bevatten:
`find "{{string}}" {{pad/naar/bestand_of_map}} /v`
- Toon het aantal regels dat de string bevat:
`find "{{string}}" {{pad/naar/bestand_of_map}} /c`
- Laat het aantal regels zien samen met de regels:
`find "{{string}}" {{pad/naar/bestand_of_map}} /n`