Comment on page
pbcopy alternative for copying to clipboard
we can have something similar in linux. Put this is your shell profile (
~/.bashrc
or ~/.zshrc
if you are using zsh)alias pbcopy='xclip -selection clipboard'
alias pbpaste='xclip -selection clipboard -o'
Last modified 1yr ago