mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-08-28 20:06:51 +08:00
set-clipboard: add Dutch translation, fix backslash (#20617)
Co-authored-by: Florian B. <gn0mish@protonmail.com>
This commit is contained in:
@@ -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 ""`
|
||||
@@ -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:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user