2014-01-31 21:17:32 -05:00
|
|
|
# pbcopy
|
|
|
|
|
2022-12-04 08:53:34 +01:00
|
|
|
> Copy data from `stdin` to the clipboard.
|
2025-03-07 14:02:32 +02:00
|
|
|
> Comparable to pressing `<Cmd c>` on the keyboard.
|
2024-01-31 07:20:27 -03:00
|
|
|
> More information: <https://keith.github.io/xcode-man-pages/pbcopy.1.html>.
|
2014-01-31 21:17:32 -05:00
|
|
|
|
2022-08-18 19:21:09 -07:00
|
|
|
- Place the contents of a specific file in the clipboard:
|
2014-01-31 21:17:32 -05:00
|
|
|
|
2022-08-18 19:21:09 -07:00
|
|
|
`pbcopy < {{path/to/file}}`
|
2014-01-31 21:17:32 -05:00
|
|
|
|
2022-08-18 19:21:09 -07:00
|
|
|
- Place the results of a specific command in the clipboard:
|
2014-01-31 21:17:32 -05:00
|
|
|
|
|
|
|
`find . -type t -name "*.png" | pbcopy`
|