pages.nl/*: add Dutch alias pages (#11650)
This commit is contained in:
8
pages.nl/windows/gl.md
Normal file
8
pages.nl/windows/gl.md
Normal file
@@ -0,0 +1,8 @@
|
||||
# gl
|
||||
|
||||
> In PowerShell is dit commando een alias van `get-location`.
|
||||
> Meer informatie: <https://learn.microsoft.com/powershell/module/microsoft.powershell.management/get-location>.
|
||||
|
||||
- Bekijk de documentatie van het originele commando:
|
||||
|
||||
`tldr get-location`
|
8
pages.nl/windows/mi.md
Normal file
8
pages.nl/windows/mi.md
Normal file
@@ -0,0 +1,8 @@
|
||||
# mi
|
||||
|
||||
> In PowerShell is dit commando een alias van `move-item`.
|
||||
> Meer informatie: <https://learn.microsoft.com/powershell/module/microsoft.powershell.management/move-item>.
|
||||
|
||||
- Bekijk de documentatie van het originele commando:
|
||||
|
||||
`tldr move-item`
|
29
pages.nl/windows/move.md
Normal file
29
pages.nl/windows/move.md
Normal file
@@ -0,0 +1,29 @@
|
||||
# move
|
||||
|
||||
> Verplaats of hernoem bestanden en mappen.
|
||||
> In PowerShell is dit commando een alias van `Move-Item`. Deze documentatie is gebaserd op de Command Prompt (`cmd`) versie van `move`.
|
||||
> Meer informatie: <https://learn.microsoft.com/windows-server/administration/windows-commands/move>.
|
||||
|
||||
- Bekijk de documentatie van het PowerShell equivalente commando:
|
||||
|
||||
`tldr move-item`
|
||||
|
||||
- Hernoem een bestand of map als het doel een niet-bestaande map is:
|
||||
|
||||
`move {{pad\naar\bron}} {{pad\naar\doel}}`
|
||||
|
||||
- Verplaats een bestand of map naar een bestaande map:
|
||||
|
||||
`move {{pad\naar\bron}} {{pad\naar\bestaande_map}}`
|
||||
|
||||
- Verplaats een map of bestand naar een andere schijf:
|
||||
|
||||
`move {{C:\pad\naar\bron}} {{D:\pad\naar\doel}}`
|
||||
|
||||
- Vraag niet voor bevestiging voordat bestaande bestanden worden overschreven:
|
||||
|
||||
`move /Y {{pad\naar\bron}} {{pad\naar\bestaande_map}}`
|
||||
|
||||
- Vraag voor bevestiging voordat bestaande bestanden worden overschreven, ongeacht de bestandspermissies:
|
||||
|
||||
`move /-Y {{pad\naar\bron}} {{pad\naar\bestaande_map}}`
|
13
pages.nl/windows/mv.md
Normal file
13
pages.nl/windows/mv.md
Normal file
@@ -0,0 +1,13 @@
|
||||
# mv
|
||||
|
||||
> In PowerShell is dit commando een alias van `Move-Item`.
|
||||
> Maar dit commando is niet beschikbaar op de Command Prompt (`cmd`). Gebruik `move` voor soortgelijke functionaliteit.
|
||||
> Meer informatie: <https://learn.microsoft.com/powershell/module/microsoft.powershell.management/move-item>.
|
||||
|
||||
- Bekijk documentatie voor het equivalente Command Prompt commando:
|
||||
|
||||
`tldr move`
|
||||
|
||||
- Bekijk documentatie voor het originele PowerShell commando:
|
||||
|
||||
`tldr move-item`
|
13
pages.nl/windows/pwd.md
Normal file
13
pages.nl/windows/pwd.md
Normal file
@@ -0,0 +1,13 @@
|
||||
# pwd
|
||||
|
||||
> In PowerShell, is dit commando een alias van `Get-Location`.
|
||||
> Maar dit commando is niet beschikbaar op de Command Prompt (`cmd`). Gebruik `cd` voor soortgelijke functionaliteit.
|
||||
> Meer informatie: <https://learn.microsoft.com/powershell/module/microsoft.powershell.management/get-location>.
|
||||
|
||||
- Bekijk documentatie voor het equivalente Command Prompt commando:
|
||||
|
||||
`tldr cd`
|
||||
|
||||
- Bekijk documentatie voor het originele PowerShell commando:
|
||||
|
||||
`tldr get-location`
|
Reference in New Issue
Block a user