Dopo aver visto come compilare Apache NetBeans ecco un altro modo per ottenere l’ultima versione di tale software, questa volta già in formato “compilato”.
Il tutto si riduce a due semplici righe da eseguire nel vostro terminale
1 2 3 |
NBURL=$( wget https://builds.apache.org/view/Incubator%20Projects/job/incubator-netbeans-linux/lastSuccessfulBuild/artifact/nbbuild/ -qO- | grep -o -e "NetBeans-dev-incubator-netbeans-linux-.*-on-.*-release.zip\"" | sed -es/\"$// ) [ "$NBURL" != "" ] && wget -nc https://builds.apache.org/view/Incubator%20Projects/job/incubator-netbeans-linux/lastSuccessfulBuild/artifact/nbbuild/$NBURL -O ./netbeans-latest.zip |
Eseguito quanto sopra, se tutto è andato bene, avrete nella directory da cui avete avviato i comandi un file netbeans-latest.zip contenente il vostro IDE, non vi resta che decidere dove decomprimere il file e avrete tutto quanto vi serve.