1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/sh
# Originally by Tim Retout <tim@retout.co.uk>
# Modified by Chris Lamb <chris@chris-lamb.co.uk>
# TODO: Subclipse
mkdir -p /var/tmp/$USER/
cd /var/tmp/$USER/
rm -f /var/tmp/$USER/eclipse-SDK*.tar.gz*
echo "Downloading Eclipse..."
wget --quiet http://bong.uwcs.co.uk/eclipse/eclipse-SDK-3.2.1-linux-gtk.tar.gz
echo "Extracting..."
tar xzf eclipse-SDK-3.2.1-linux-gtk.tar.gz
echo "You can hopefully now run Eclipse with"
echo "/var/tmp/$USER/eclipse/eclipse"
|