Created
March 3, 2020 13:59
-
-
Save vprusa/20fecfbb1094d6e1dfb98eb2a7bc5fda to your computer and use it in GitHub Desktop.
Aliases for copypaste from terminal to clipboard
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
# usage | |
# ``` echo "hello" | _c ``` | |
# ctrl+shift+v | ``` _p ``` | |
_c(){ | |
cat | xclip -r -selection clipboard | |
} | |
_p(){ | |
xclip -selection clipboard -o | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment