dir, find, rmdir, shutdown: add Dutch translation (#4977)

This commit is contained in:
Daan
2020-11-22 22:54:46 +01:00
committed by GitHub
parent b77cd3cc66
commit 5aff6baaff
4 changed files with 96 additions and 0 deletions

20
pages.nl/windows/find.md Normal file
View File

@@ -0,0 +1,20 @@
# find
> Vind een gespecificieerde string in een bestand
> Meer informatie: <https://docs.microsoft.com/windows-server/administration/windows-commands/find>.
- Vind de lijnen dat een specifieke string bevatten:
`find {{string}} {{pad/naar/bestand_of_directory}}`
- Laat lijnen zie die de string niet bevatten:
`find {{string}} {{pad/naar/bestand_of_directory}} /v`
- Toon het aantal lijnen dat de string bevat:
`find {{string}} {{pad/naar/bestand_of_directory}} /c`
- Laat het aantal lijnen zien samen met de lijnen:
`find {{string}} {{pad/naar/bestand_of_directory}} /n`