Skip to content

Instantly share code, notes, and snippets.

@cryptoquick
Created July 24, 2019 16:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cryptoquick/ed6e39a631f528a4d89561eafe8ae6b5 to your computer and use it in GitHub Desktop.
Save cryptoquick/ed6e39a631f528a4d89561eafe8ae6b5 to your computer and use it in GitHub Desktop.
Get pbcopy and pbpaste in Arch Linux

Get pbcopy and pbpaste in Arch Linux

First you need the 'xsel' package.

$> pacman -S xsel

Then create aliases.

alias pbcopy='xsel --clipboard --input'
alias pbpaste='xsel --clipboard --output'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment