Skip to content

Instantly share code, notes, and snippets.

@ShannonScott
Last active August 2, 2019 16:14
Show Gist options
  • Save ShannonScott/ef0485f2c416d138d29139b63c0d3a0e to your computer and use it in GitHub Desktop.
Save ShannonScott/ef0485f2c416d138d29139b63c0d3a0e to your computer and use it in GitHub Desktop.
[Mac copy/paste commands on Linux] pbcopy and pbpaste from MacOS on Linux. #tags: linux, mac, bash

Mac-style CLI copy / paste on Linux

alias pbcopy='xclip -selection clipboard'
alias pbpaste='xclip -selection clipboard -o'

Example usage

Pipe clipboard contents to do_something.bash and copy results back to the clipboard.

pbpaste | do_something.bash | pbcopy

Links

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment