Skip to content

Instantly share code, notes, and snippets.

@nevstokes
Created October 22, 2017 20:52
Show Gist options
  • Save nevstokes/7e658a9cab8086b5cb0500599990bb0a to your computer and use it in GitHub Desktop.
Save nevstokes/7e658a9cab8086b5cb0500599990bb0a to your computer and use it in GitHub Desktop.
zsh function to make use of github-release.xsl
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