2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-11 01:10:31 +00:00
cheat.sheets/sheets/pbcopy

10 lines
206 B
Plaintext
Raw Normal View History

2017-06-04 14:17:01 +00:00
# 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