Created
October 22, 2017 20:52
-
-
Save nevstokes/7e658a9cab8086b5cb0500599990bb0a to your computer and use it in GitHub Desktop.
zsh function to make use of github-release.xsl
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
function release() { | |
wget -q https://github.com/$1/releases.atom -O - | xsltproc github-releases.xsl - | awk -F/ '{ print $NF; }' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment