Skip to content

Instantly share code, notes, and snippets.

@normoes
Created October 12, 2018 07:45
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save normoes/3dc4db541fda3ab05c7d3ab7b963a33a to your computer and use it in GitHub Desktop.
Save normoes/3dc4db541fda3ab05c7d3ab7b963a33a to your computer and use it in GitHub Desktop.
Get latest github release

Get latest:

curl --silent "https://api.github.com/repos/monero-project/monero/releases/latest" | grep '"tag_name":' | cut -d ':' -f2 | tr -d '", '

Get all

curl --silent "https://api.github.com/repos/monero-project/monero/releases" | grep '"tag_name":' | cut -d ':' -f2 | tr -d '", ' | head -n1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment