mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-15 01:17:45 +00:00
8 lines
153 B
Fish
8 lines
153 B
Fish
|
function fish_clipboard_copy
|
||
|
if type -q pbcopy
|
||
|
commandline | pbcopy
|
||
|
else if type -q xsel
|
||
|
commandline | xsel --clipboard
|
||
|
end
|
||
|
end
|