tldr/pages/windows/clip.md

21 lines
517 B
Markdown
Raw Normal View History

2018-10-08 23:07:11 +01:00
# clip
> Copy input content to the Windows clipboard.
2019-08-22 13:37:57 +01:00
> More information: <https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/clip>.
2018-10-08 23:07:11 +01:00
- Pipe command line output to the Windows clipboard:
`{{dir}} | clip`
- Copy the contents of a file to the Windows clipboard:
2019-10-31 17:36:53 +00:00
`clip < {{path/to/file.ext}}`
- 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`