Created
March 15, 2017 17:10
-
-
Save marty-Wallace/6e488ff1207b99e784088c3e877f5a51 to your computer and use it in GitHub Desktop.
bash aliases for copy and paste with Xclip
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#copies the piped input onto the clipboard | |
alias copy="xclip -selection c" | |
#pastes the clipboards contents into the terminal | |
alias paste="xclip -selection clipboard -o" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment