[split] Move pbcopy plugin to oh-my-fish/plugin-pbcopy

https://github.com/oh-my-fish/plugin-pbcopy
This commit is contained in:
Justin Hileman 2015-05-31 08:30:49 -07:00
parent 994ddbf8f3
commit 3cb0cc4334
2 changed files with 0 additions and 45 deletions

View File

@ -1,38 +0,0 @@
# 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:
```fish
$ ls ~ | pbcopy
```
Copy the contents of a file to the clipboard:
```fish
$ pbcopy < cookies.txt
```
Copy part of a file to the clipboard
```fish
$ grep 'ip address' serverlist.txt | pbcopy
```
Paste from your clipboard to stdout
echo `pbpaste`
```fish
$ pbpaste
```
Paste from your clipboard to a file
```fish
$ pbpaste > clipboard.txt
```
Paste from your clipboard to a file in a remote host
```fish
$ pbpaste | ssh username@host 'cat > ~/myclipboard.txt'
```

View File

@ -1,7 +0,0 @@
function pbcopy --description "Copy data from STDIN to the clipboard"
xsel --clipboard --input
end
function pbpaste --description "Paste data from the Clipboard"
xsel --clipboard --output
end