1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-04 04:55:32 +02:00
tldr/osx/pbcopy.md
2014-01-31 21:17:32 -05:00

229 B

pbcopy

Place standard output in the clipboard (OS X only)

  • 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