Skip to content

Instantly share code, notes, and snippets.

@theskumar
Forked from mnem/alias_pbcopy_pbpaste.sh
Created November 3, 2012 11:59
Show Gist options
  • Save theskumar/4007175 to your computer and use it in GitHub Desktop.
Save theskumar/4007175 to your computer and use it in GitHub Desktop.
pbcopy and pbpaste for linux
# Emulate pbcopy and pbpaste for copying to and from the pasteboard/clipboard
#
# via: http://whereswalden.com/2009/10/23/pbcopy-and-pbpaste-for-linux/
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