mirror of
https://github.com/chubin/cheat.sheets
synced 2024-11-11 01:10:31 +00:00
10 lines
206 B
Plaintext
10 lines
206 B
Plaintext
|
# pbcopy
|
||
|
# Place standard output in the clipboard.
|
||
|
|
||
|
# 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
|
||
|
|