Skip to content

Instantly share code, notes, and snippets.

@thomasfr
Created August 30, 2012 10:54
Show Gist options
  • Save thomasfr/3526258 to your computer and use it in GitHub Desktop.
Save thomasfr/3526258 to your computer and use it in GitHub Desktop.
Get latest stable and latest dev version Copied from https://github.com/isaacs/nave/blob/master/nave.sh
nave_latest () {
curl -s http://nodejs.org/dist/ \
| egrep -o '[0-9]+\.[0-9]+\.[0-9]+' \
| sort -u -k 1,1n -k 2,2n -k 3,3n -t . \
| tail -n1
}
nave_stable () {
curl -s http://nodejs.org/dist/ \
| egrep -o '[0-9]+\.[0-9]*[02468]\.[0-9]+' \
| sort -u -k 1,1n -k 2,2n -k 3,3n -t . \
| tail -n1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment