mirror of
https://github.com/oh-my-fish/oh-my-fish.git
synced 2025-02-09 02:24:16 +08: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
|