set-clipboard: add Dutch translation, fix backslash (#20617)

Co-authored-by: Florian B. <gn0mish@protonmail.com>
This commit is contained in:
Sebastiaan Speck
2026-01-08 01:06:17 +01:00
committed by GitHub
parent 9079865ee9
commit 0536a84783
2 changed files with 27 additions and 2 deletions
+25
View File
@@ -0,0 +1,25 @@
# Set-Clipboard
> PowerShell commando om inhoud naar het klembord te kopiëren.
> Opmerking: `scb` kan gebruikt worden als een alias voor `Set-Clipboard`.
> Meer informatie: <https://learn.microsoft.com/powershell/module/microsoft.powershell.management/set-clipboard>.
- Kopieer tekst naar het klembord:
`Set-Clipboard -Value "{{tekst}}"`
- Kopieer meerdere teksten naar het klembord, gescheiden door een nieuwe regel:
`Set-Clipboard -Value @("{{tekst 1}}", "{{tekst 2}}", "{{tekst 3}}")`
- Kopieer bestanden of mappen naar het klembord:
`Set-Clipboard -Path "{{pad\naar\bestanden_of_mappen}}"`
- Kopieer meerdere bestanden:
`Set-Clipboard -Path "{{pad\naar\bestand1}}","{{pad\naar\bestand2}}","{{pad\naar\bestand3}}"`
- Wis het klembord:
`Set-Clipboard ""`
+2 -2
View File
@@ -14,11 +14,11 @@
- Copy files or directories to clipboard:
`Set-Clipboard -Path "{{path/to/files_or_directories}}"`
`Set-Clipboard -Path "{{path\to\files_or_directories}}"`
- Copy multiple files:
`Set-Clipboard -Path "{{path/to/file1}}","{{path/to/file2}}","{{path/to/file3}}"`
`Set-Clipboard -Path "{{path\to\file1}}","{{path\to\file2}}","{{path\to\file3}}"`
- Clear the clipboard: