1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
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 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`