15 lines
318 B
Bash
15 lines
318 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
srvpath=/var/www/html/javadev
|
||
|
mkdir -p $srvpath
|
||
|
rm -f $srvpath/*
|
||
|
cd $srvpath || exit 1
|
||
|
|
||
|
greenfoot=https://www.greenfoot.org/download/files/Greenfoot-linux-371.deb
|
||
|
bluej=https://www.bluej.org/download/files/BlueJ-linux-520.deb
|
||
|
|
||
|
wget $greenfoot -O $srvpath/greenfoot.deb
|
||
|
wget $bluej -O $srvpath/bluej.deb
|
||
|
|
||
|
|