2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-03 15:40:17 +00:00
cheat.sheets/sheets/pbcopy
2017-06-04 14:17:01 +00:00

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