Skip to content

Instantly share code, notes, and snippets.

@rosado
Created April 15, 2022 07:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rosado/428be08f44d3f8663927950e9b2eb13e to your computer and use it in GitHub Desktop.
Save rosado/428be08f44d3f8663927950e9b2eb13e to your computer and use it in GitHub Desktop.
copy & paste
# Source: https://gist.github.com/RichardBronosky/56d8f614fab2bacdd8b048fb58d0c0c7
# Linux
_copy(){
cat | xclip -selection clipboard
}
_paste(){
xclip -selection clipboard -o
}
# macOS
_copy(){
cat | pbcopy
}
_paste(){
pbpaste
}
# Cygwin
_copy(){
cat > /dev/clipboard
}
_paste(){
cat /dev/clipboard
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment