Created
April 15, 2022 07:55
-
-
Save rosado/428be08f44d3f8663927950e9b2eb13e to your computer and use it in GitHub Desktop.
copy & paste
This file contains hidden or 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
# 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