1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/osx/pbcopy.md
2022-02-14 08:21:43 -03:00

12 lines
272 B
Markdown

# pbcopy
> Place standard output in the clipboard.
> More information: <https://ss64.com/osx/pbcopy.html>.
- 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`