tldr/pages/windows/clip.md

21 lines
512 B
Markdown
Raw Normal View History

2018-10-08 23:07:11 +01:00
# clip
> Copy input content to the Windows clipboard.
> More information: <https://learn.microsoft.com/windows-server/administration/windows-commands/clip>.
2018-10-08 23:07:11 +01: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:
`clip < {{path\to\file.ext}}`
2019-10-31 17:36:53 +00: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`