mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-05 03:56:25 +03:00
pages.nl/*: add Dutch translations (#11526)
This commit is contained in:
parent
a1fe74ac82
commit
44315280cf
36
pages.nl/common/chromium.md
Normal file
36
pages.nl/common/chromium.md
Normal file
@ -0,0 +1,36 @@
|
||||
# chromium
|
||||
|
||||
> Open-source webbrowser voornamelijk ontwikkeld en onderhouden door Google.
|
||||
> Meer informatie: <https://www.chromium.org/developers/how-tos/run-chromium-with-flags/>.
|
||||
|
||||
- Open een specifieke URL of bestand:
|
||||
|
||||
`chromium {{https://example.com|pad/naar/bestand.html}}`
|
||||
|
||||
- Open in de incognito-modus:
|
||||
|
||||
`chromium --incognito {{example.com}}`
|
||||
|
||||
- Open in een nieuw venster:
|
||||
|
||||
`chromium --new-window {{example.com}}`
|
||||
|
||||
- Open in de applicatiemodus (zonder toolbars, URL-balk, knoppen, etc.):
|
||||
|
||||
`chromium --app={{https://example.com}}`
|
||||
|
||||
- Gebruik een proxyserver:
|
||||
|
||||
`chromium --proxy-server="{{socks5://hostname:66}}" {{example.com}}`
|
||||
|
||||
- Open met een aangepaste profielmap:
|
||||
|
||||
`chromium --user-data-dir={{pad/naar/map}}`
|
||||
|
||||
- Open zonder CORS validatie (nuttig om een API te testen):
|
||||
|
||||
`chromium --user-data-dir={{pad/naar/map}} --disable-web-security`
|
||||
|
||||
- Open met een DevTools venster voor elk geopend tabblad:
|
||||
|
||||
`chromium --auto-open-devtools-for-tabs`
|
36
pages.nl/windows/choco-install.md
Normal file
36
pages.nl/windows/choco-install.md
Normal file
@ -0,0 +1,36 @@
|
||||
# choco install
|
||||
|
||||
> Installeer een of meerdere pakketen met Chocolatey.
|
||||
> Meer informatie: <https://chocolatey.org/docs/commands-install>.
|
||||
|
||||
- Installeer een of meerdere spatie-gescheiden pakketten:
|
||||
|
||||
`choco install {{pakket1 pakket2 ...}}`
|
||||
|
||||
- Installeer pakketten van een aangepast configuratiebestand:
|
||||
|
||||
`choco install {{pad\naar\pakketten_bestand.config}}`
|
||||
|
||||
- Installeer een specifiek `nuspec` of `nupkg` bestand:
|
||||
|
||||
`choco install {{pad\naar\bestand}}`
|
||||
|
||||
- Installeer een specifieke versie van een pakket:
|
||||
|
||||
`choco install {{pakket}} --version {{versie}}`
|
||||
|
||||
- Sta het toe om meerdere versies van een pakket te installeren:
|
||||
|
||||
`choco install {{pakket}} --allow-multiple`
|
||||
|
||||
- Bevestig alle prompts automatisch:
|
||||
|
||||
`choco install {{pakket}} --yes`
|
||||
|
||||
- Specificieer een aangepaste bron om pakketten van te ontvangen:
|
||||
|
||||
`choco install {{pakket}} --source {{source_url|alias}}`
|
||||
|
||||
- Geef een gebruikersnaam en wachtwoord voor authenticatie op:
|
||||
|
||||
`choco install {{pakket}} --user {{gebruikersnaam}} --password {{wachtwoord}}`
|
28
pages.nl/windows/choco-list.md
Normal file
28
pages.nl/windows/choco-list.md
Normal file
@ -0,0 +1,28 @@
|
||||
# choco list
|
||||
|
||||
> Toon een lijst van pakketten met Chocolatey.
|
||||
> Meer informatie: <https://chocolatey.org/docs/commands-list>.
|
||||
|
||||
- Toon alle beschikbare pakketten:
|
||||
|
||||
`choco list`
|
||||
|
||||
- Toon alle lokaal geïnstalleerde pakketten:
|
||||
|
||||
`choco list --local-only`
|
||||
|
||||
- Toon een lijst inclusief lokale programma's:
|
||||
|
||||
`choco list --include-programs`
|
||||
|
||||
- Toon alleen goedgekeurde pakketten:
|
||||
|
||||
`choco list --approved-only`
|
||||
|
||||
- Geef een aangepaste bron op om pakketten van weer te geven:
|
||||
|
||||
`choco list --source {{source_url|alias}}`
|
||||
|
||||
- Geef een gebruikersnaam en wachtwoord voor authenticatie op:
|
||||
|
||||
`choco list --user {{username}} --password {{password}}`
|
12
pages.nl/windows/choco-push.md
Normal file
12
pages.nl/windows/choco-push.md
Normal file
@ -0,0 +1,12 @@
|
||||
# choco-push
|
||||
|
||||
> Push een gecompileerd NuGet pakket (`nupkg`) naar een pakketfeed.
|
||||
> Meer informatie: <https://docs.chocolatey.org/en-us/create/commands/push>.
|
||||
|
||||
- Push een gecompileerd `nupkg` naar de gespecificeerde feed:
|
||||
|
||||
`choco push --source {{https://push.chocolatey.org/}}`
|
||||
|
||||
- Push een gecompileerd `nupkg` naar de gespecificeerde feed met een timeout in seconden (standaard is 2700):
|
||||
|
||||
`choco push --source {{https://push.chocolatey.org/}} --execution-timeout {{500}}`
|
24
pages.nl/windows/choco-uninstall.md
Normal file
24
pages.nl/windows/choco-uninstall.md
Normal file
@ -0,0 +1,24 @@
|
||||
# choco uninstall
|
||||
|
||||
> Verwijder een of meerdere pakketen met Chocolatey.
|
||||
> Meer informatie: <https://chocolatey.org/docs/commands-uninstall>.
|
||||
|
||||
- Verwijder een of meerdere spatie-gescheiden pakketten:
|
||||
|
||||
`choco uninstall {{pakket1 pakket2 ...}}`
|
||||
|
||||
- Verwijder een specifieke versie van een pakket:
|
||||
|
||||
`choco uninstall {{pakket}} --version {{versie}}`
|
||||
|
||||
- Bevestig alle prompts automatisch:
|
||||
|
||||
`choco uninstall {{pakket}} --yes`
|
||||
|
||||
- Verwijder alle afhankelijkheden bij het verwijderen:
|
||||
|
||||
`choco uninstall {{pakket}} --remove-dependencies`
|
||||
|
||||
- Verwijder alle pakketten:
|
||||
|
||||
`choco uninstall all`
|
21
pages.nl/windows/choco.md
Normal file
21
pages.nl/windows/choco.md
Normal file
@ -0,0 +1,21 @@
|
||||
# choco
|
||||
|
||||
> De Chocolatey pakket manager.
|
||||
> Sommige subcommando's zoals `choco install` hebben hun eigen gebruiksdocumentatie.
|
||||
> Meer informatie: <https://chocolatey.org>.
|
||||
|
||||
- Voer een Chocolatey commando uit:
|
||||
|
||||
`choco {{commando}}`
|
||||
|
||||
- Toon algemene hulp:
|
||||
|
||||
`choco -?`
|
||||
|
||||
- Toon help voor een specifiek commando:
|
||||
|
||||
`choco {{commando}} -?`
|
||||
|
||||
- Bekijk de Chocolatey versie:
|
||||
|
||||
`choco --version`
|
25
pages.nl/windows/invoke-webrequest.md
Normal file
25
pages.nl/windows/invoke-webrequest.md
Normal file
@ -0,0 +1,25 @@
|
||||
# Invoke-WebRequest
|
||||
|
||||
> Voer een HTTP/HTTPS request uit naar het Web.
|
||||
> Dit commando kan alleen gebruikt worden via PowerShell.
|
||||
> Meer informatie: <https://learn.microsoft.com/powershell/module/microsoft.powershell.utility/invoke-webrequest>.
|
||||
|
||||
- Download de inhoud van een URL naar een bestand:
|
||||
|
||||
`Invoke-WebRequest {{http://example.com}} -OutFile {{pad\naar\bestand}}`
|
||||
|
||||
- Stuur form-gecodeerde gegevens (POST request van het type `application/x-www-form-urlencoded`):
|
||||
|
||||
`Invoke-WebRequest -Method Post -Body @{ name='bob' } {{http://example.com/form}}`
|
||||
|
||||
- Stuur een request met een extra header, door gebruik te maken van een aangepast HTTP methode:
|
||||
|
||||
`Invoke-WebRequest -Headers {{@{ X-My-Header = '123' }}} -Method {{PUT}} {{http://example.com}}`
|
||||
|
||||
- Stuur gegevens in JSON formaat en specificieer de juiste content-type header:
|
||||
|
||||
`Invoke-WebRequest -Body {{'{"name":"bob"}'}} -ContentType 'application/json' {{http://example.com/users/1234}}`
|
||||
|
||||
- Stuur een gebruikersnaam en wachtwoord voor een server authenticatie:
|
||||
|
||||
`Invoke-WebRequest -Headers @{ Authorization = "Basic "+ [System.Convert]::ToBase64String([System.Text.Encoding]::ASCII.GetBytes("myusername:mypassword")) } {{http://example.com}}`
|
26
pages.nl/windows/select-string.md
Normal file
26
pages.nl/windows/select-string.md
Normal file
@ -0,0 +1,26 @@
|
||||
# Select-String
|
||||
|
||||
> Vindt tekst in string en bestanden in PowerShell.
|
||||
> Dit commando kan alleen gebruikt worden via PowerShell.
|
||||
> Je kan `Select-String` gebruiken zoals `grep` in UNIX of `findstr.exe` in Windows.
|
||||
> Meer informatie: <https://learn.microsoft.com/powershell/module/microsoft.powershell.utility/select-string>.
|
||||
|
||||
- Zoek naar een patroon binnen een bestand:
|
||||
|
||||
`Select-String -Path "{{pad\naar\bestand}}" -Pattern '{{zoek_patroon}}'`
|
||||
|
||||
- Zoek naar een exacte string (schakelt reguliere expressies uit):
|
||||
|
||||
`Select-String -SimpleMatch "{{exacte_string}}" {{pad\naar\bestand}}`
|
||||
|
||||
- Zoek naar een patroon in alle `.ext` bestanden in de huidige map:
|
||||
|
||||
`Select-String -Path "{{*.ext}}" -Pattern '{{zoek_patroon}}'`
|
||||
|
||||
- Toon het opgegeven aantal regels voor en na de regel die overeenkomt met de patroon:
|
||||
|
||||
`Select-String --Context {{2,3}} "{{zoek_patroon}}" {{pad\naar\bestand}}`
|
||||
|
||||
- Zoek in `stdin` voor regels die niet overeenkomen met een patroon:
|
||||
|
||||
`Get-Content {{pad\naar\bestand}} | Select-String --NotMatch "{{zoek_patroon}}"`
|
17
pages.nl/windows/where-object.md
Normal file
17
pages.nl/windows/where-object.md
Normal file
@ -0,0 +1,17 @@
|
||||
# Where-Object
|
||||
|
||||
> Selecteert objecten uit een verzameling op basis van hun eigenschapswaarden.
|
||||
> Dit commando kan alleen gebruikt worden via PowerShell.
|
||||
> Meer informatie: <https://learn.microsoft.com/powershell/module/microsoft.powershell.core/where-object>.
|
||||
|
||||
- Filter aliassen op naam:
|
||||
|
||||
`Get-Alias | Where-Object -{{Property}} {{Name}} -{{eq}} {{naam}}`
|
||||
|
||||
- Toon een lijst van alle services die momenteel zijn gestopt. De `$_` automatische variable representeert ieder object dat word gestuurd naar de `Where-Object` cmdlet:
|
||||
|
||||
`Get-Service | Where-Object {$_.Status -eq "Stopped"}`
|
||||
|
||||
- Gebruik meerdere condities:
|
||||
|
||||
`Get-Module -ListAvailable | Where-Object { $_.Name -NotLike "Microsoft*" -And $_.Name -NotLike "PS*" }`
|
@ -11,7 +11,7 @@
|
||||
|
||||
`choco install {{path\to\packages_file.config}}`
|
||||
|
||||
- Install a specific nuspec or nupkg file:
|
||||
- Install a specific `nuspec` or `nupkg` file:
|
||||
|
||||
`choco install {{path\to\file}}`
|
||||
|
||||
|
@ -1,9 +1,9 @@
|
||||
# choco pack
|
||||
|
||||
> Package a NuGet specification into a nupkg file.
|
||||
> Package a NuGet specification into a `nupkg` file.
|
||||
> More information: <https://chocolatey.org/docs/commands-pack>.
|
||||
|
||||
- Package a NuGet specification to a nupkg file:
|
||||
- Package a NuGet specification to a `nupkg` file:
|
||||
|
||||
`choco pack {{path\to\specification_file}}`
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user