Last active
December 28, 2021 20:07
-
-
Save wilmoore/1507599 to your computer and use it in GitHub Desktop.
Git :: git.io
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
######################################################################################## | |
# function for generating a git.io short url | |
######################################################################################## | |
function git-shorturl { | |
curl -i http://git.io -F "url=$1" 2>/dev/null | grep -i "location:" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment