Skip to content

Instantly share code, notes, and snippets.

@mircobabini
Last active December 18, 2015 14:58
Show Gist options
  • Select an option

  • Save mircobabini/5800580 to your computer and use it in GitHub Desktop.

Select an option

Save mircobabini/5800580 to your computer and use it in GitHub Desktop.
Obtain the last netbeans version available on the official website
#!/bin/bash
# @author Mirco Babini <mirkolofioⓐgmail.com>
HTML="`wget -qO- http://dlc.sun.com.edgesuite.net/netbeans/`"
versions=(`echo $HTML | grep -oE '[0-9]+\.[0-9]+\.?[0-9]?+' | uniq`)
echo "${versions[${#versions[@]}-1]}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment