2014-01-31 21:17:32 -05:00
|
|
|
# pbcopy
|
|
|
|
|
2022-12-04 08:53:34 +01:00
|
|
|
> Copy data from `stdin` to the clipboard.
|
2023-02-03 11:38:01 +07:00
|
|
|
> Comparable to pressing Cmd + C on the keyboard.
|
2022-02-14 03:21:43 -08:00
|
|
|
> More information: <https://ss64.com/osx/pbcopy.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`
|