mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-18 21:01:14 +00:00
Move pages under tldr, lint run.sh, update docs
This commit is contained in:
25
tldr/windows/clip
Normal file
25
tldr/windows/clip
Normal file
@@ -0,0 +1,25 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, windows]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# clip
|
||||
|
||||
> Copy input content to the Windows clipboard.
|
||||
> More information: <https://learn.microsoft.com/windows-server/administration/windows-commands/clip>.
|
||||
|
||||
- Pipe command-line output to the Windows clipboard:
|
||||
|
||||
`{{dir}} | clip`
|
||||
|
||||
- Copy the contents of a file to the Windows clipboard:
|
||||
|
||||
`clip < {{path oile.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`
|
||||
Reference in New Issue
Block a user