Last active
June 7, 2016 19:06
-
-
Save rxw1/5e17bfd2a5fb8e31ca3f48b92bf919a3 to your computer and use it in GitHub Desktop.
GitHub CV Generator
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
# 87649 ~ : which update-cv github-credentials | |
update-cv () { | |
github-credentials | awk ' | |
/html_url/{print $0}; | |
!/(_url|url|false|User|id|null)/{print} | |
' | ssh uni "cat - > public_html/cv.txt" | |
} | |
github-credentials () { | |
curl -su rwilhelm:${HOMEBREW_GITHUB_API_TOKEN} https://api.github.com/user | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment