pages.nl/*: add and update pages
This commit is contained in:

committed by
K.B.Dharun Krishna

parent
362322fe70
commit
29bb3b90fb
12
pages.nl/windows/chdir.md
Normal file
12
pages.nl/windows/chdir.md
Normal file
@@ -0,0 +1,12 @@
|
||||
# chdir
|
||||
|
||||
> Dit commando is een alias van `cd` in Command Prompt en vervolgens `Set-Location` in PowerShell.
|
||||
> Meer informatie: <https://learn.microsoft.com/windows-server/administration/windows-commands/chdir>.
|
||||
|
||||
- Bekijk de documentatie voor the originele Command Prompt commando:
|
||||
|
||||
`tldr cd`
|
||||
|
||||
- Bekijk de documentatie voor the originele PowerShell commando:
|
||||
|
||||
`tldr set-location`
|
9
pages.nl/windows/clear-host.md
Normal file
9
pages.nl/windows/clear-host.md
Normal file
@@ -0,0 +1,9 @@
|
||||
# Clear-Host
|
||||
|
||||
> Wist het scherm.
|
||||
> Dit commando kan alleen gebruikt worden via PowerShell.
|
||||
> Meer informatie: <https://learn.microsoft.com/powershell/module/microsoft.powershell.core/clear-host>.
|
||||
|
||||
- Wis het scherm:
|
||||
|
||||
`cls`
|
13
pages.nl/windows/cls.md
Normal file
13
pages.nl/windows/cls.md
Normal file
@@ -0,0 +1,13 @@
|
||||
# cls
|
||||
|
||||
> Wist het scherm.
|
||||
> In PowerShell is dit commando een alias van `Clear-Host`. Deze documentatie is gebaseerd op de Command Prompt (`cmd`) versie van `cls`.
|
||||
> Meer informatie: <https://learn.microsoft.com/windows-server/administration/windows-commands/cls>.
|
||||
|
||||
- Bekijk de documentatie van het equivalente PowerShell commando:
|
||||
|
||||
`tldr clear-host`
|
||||
|
||||
- Wis het scherm:
|
||||
|
||||
`cls`
|
37
pages.nl/windows/del.md
Normal file
37
pages.nl/windows/del.md
Normal file
@@ -0,0 +1,37 @@
|
||||
# del
|
||||
|
||||
> Verwijder een of meer bestanden.
|
||||
> In PowerShell is dit commando een alias van `Remove-Item`. Deze documentatie is gebaseerd op de Command Prompt (`cmd`) versie van `del`.
|
||||
> Meer informatie: <https://learn.microsoft.com/windows-server/administration/windows-commands/del>.
|
||||
|
||||
- Bekijk de documentatie van het equivalente PowerShell commando:
|
||||
|
||||
`tldr remove-item`
|
||||
|
||||
- Verwijder een of meer, door spatie gescheiden, bestanden of patronen:
|
||||
|
||||
`del {{file_pattern}}`
|
||||
|
||||
- Vraag om bevestiging voordat u elk bestand verwijdert:
|
||||
|
||||
`del {{file_pattern}} /p`
|
||||
|
||||
- Forceer de verwijdering van alleen-lezen bestanden:
|
||||
|
||||
`del {{file_pattern}} /f`
|
||||
|
||||
- Verwijder de bestand(en) recursief uit alle submappen:
|
||||
|
||||
`del {{file_pattern}} /s`
|
||||
|
||||
- Vraag niet om bevestiging voor het verwijderen van bestanden gebaseerd op een globale wildcard:
|
||||
|
||||
`del {{file_pattern}} /q`
|
||||
|
||||
- Geef de beschikbare hulp en lijst met attributen weer:
|
||||
|
||||
`del /?`
|
||||
|
||||
- Verwijder bestanden op basis van opgegeven kenmerken:
|
||||
|
||||
`del {{file_pattern}} /a {{attribute}}`
|
Reference in New Issue
Block a user