You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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