Skip to content

Instantly share code, notes, and snippets.

@tizee
Created May 19, 2020 15:16
Show Gist options
  • Save tizee/ea18e17e073f67e6716674a9b1308940 to your computer and use it in GitHub Desktop.
Save tizee/ea18e17e073f67e6716674a9b1308940 to your computer and use it in GitHub Desktop.
CLI clipboard tools on different OS
# macos
pbcopy < file.txt
# win
clip < file.txt
# linux
# install xclip
xclip -sel clip < file.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment