mirror of https://github.com/CrimsonTome/tldr.git
13 lines
215 B
Markdown
13 lines
215 B
Markdown
|
# pbcopy
|
||
|
|
||
|
> Place standard output in the clipboard
|
||
|
|
||
|
- Place the contents of a file in the clipboard.
|
||
|
|
||
|
`pbcopy < {{file}}`
|
||
|
|
||
|
- Place the results of a command in the clipboard
|
||
|
|
||
|
`find . -type t -name "*.png" | pbcopy`
|
||
|
|