Created
August 17, 2018 11:15
-
-
Save drkarl/960188f7badcdd8b3178f67bee3db2a3 to your computer and use it in GitHub Desktop.
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
#Copy to your .zshrc | |
#Copy to clipboard | |
function cp(){ | |
echo $1 > /dev/clipboard | |
} | |
#Paste from clipboard | |
function pb(){ | |
cat /dev/clipboard | |
} | |
#Copy jira from task to clipboard | |
function cpjira(){ | |
echo `task _get "$1".jira` > /dev/clipboard | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment