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

8 lines
198 B
Fish
Raw Normal View History

2015-02-01 19:18:16 +00: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