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