icedtea/icedtea-autoupdate

8 lines
275 B
Plaintext
Raw Permalink Normal View History

#!/bin/bash
ICEDTEA_VERSION=`echo $1 | cut -d_ -f2`
[ "$1" ] || exit 1
for p in aarch64 corba hotspot jaxp jaxws jdk langtools openjdk; do
curl http://icedtea.wildebeest.org/download/drops/icedtea7/$ICEDTEA_VERSION/$p.tar.bz2 -o icedtea7-$p-$ICEDTEA_VERSION.tar.bz2
done