|
|
|
|
|
by pubg
2039 days ago
|
|
It's rather straightforward to create .bashrc aliases on Linux to transform xclip or xsel into pbcopy and pbpaste [0]: alias pbcopy='xclip -selection clipboard'
alias pbpaste='xclip -selection clipboard -o'
[0] https://superuser.com/a/288333/72342 |
|