mirror of
https://github.com/oh-my-fish/oh-my-fish
synced 2024-11-07 15:20:22 +00:00
8 lines
198 B
Fish
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
|