oh-my-fish/plugins/pbcopy/pbcopy.fish

8 lines
198 B
Fish
Raw Normal View History

2015-02-02 03:18:16 +08:00
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