2018-10-08 23:07:11 +01:00
|
|
|
# clip
|
|
|
|
|
|
|
|
> Copy input content to the Windows clipboard.
|
2022-10-04 20:36:23 +05:30
|
|
|
> More information: <https://learn.microsoft.com/windows-server/administration/windows-commands/clip>.
|
2018-10-08 23:07:11 +01:00
|
|
|
|
2021-05-20 16:13:41 -04:00
|
|
|
- Pipe command-line output to the Windows clipboard:
|
2018-10-08 23:07:11 +01:00
|
|
|
|
|
|
|
`{{dir}} | clip`
|
|
|
|
|
|
|
|
- Copy the contents of a file to the Windows clipboard:
|
|
|
|
|
2023-02-20 17:23:49 +10:00
|
|
|
`clip < {{path\to\file.ext}}`
|
2019-10-31 19:36:53 +02:00
|
|
|
|
|
|
|
- Copy text with a trailing newline to the Windows clipboard:
|
|
|
|
|
|
|
|
`echo {{some text}} | clip`
|
|
|
|
|
|
|
|
- Copy text without a trailing newline to the Windows clipboard:
|
|
|
|
|
|
|
|
`echo | set /p="some text" | clip`
|