oh-my-fish/plugins/pbcopy/pbcopy.fish
unbalancedparentheses 12c07f15e3 added pbcopy plugin
2015-02-03 12:38:55 +00:00

8 lines
198 B
Fish

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