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.
oh-my-fish/plugins/pbcopy
unbalancedparentheses 12c07f15e3 added pbcopy plugin 10 years ago
..
README.md added pbcopy plugin 10 years ago
pbcopy.fish added pbcopy plugin 10 years ago

README.md

pbcopy

OSX's pbcopy and pbpaste for Linux

pbcopy paste data from the clipboard to STDOUT. pbpaste paste data from the clipboard.

Usage

Copy a list of files in your home directory to the OS X clipboard:

$ ls ~ | pbcopy

Copy the contents of a file to the clipboard:

$ pbcopy < cookies.txt

Copy part of a file to the clipboard

$ grep 'ip address' serverlist.txt | pbcopy

Paste from your clipboard to stdout echo pbpaste

$ pbpaste

Paste from your clipboard to a file

$ pbpaste > clipboard.txt

Paste from your clipboard to a file in a remote host

$ pbpaste | ssh username@host 'cat > ~/myclipboard.txt'