ubuntu 1.1.0.4 other terminal download method
#1
is there a line of code i can enter in the terminal command line of ubuntu linux that will download and set up 1.1.0.4 ?
Thanks given by:
#2
Time for some command line madness :)
cd /tmp; wget http://downloads.sourceforge.net/project/actiongame/AssaultCube%20Version%201.1.0.4/AssaultCube_v1.1.0.4.tar.bz2 && cd ~ && tar -xjf /tmp/AssaultCube_v1.1.0.4.tar.bz2 && mv 1.1.0.4 AssaultCube_1.1.0.4
This will install AC in a directory named AssaultCube_1.1.0.4 within your home directory. Now, you just run ./assaultcube.sh from there.
Thanks given by:
#3
How about this instead? It's fancier:

cd ~ && wget http://downloads.sourceforge.net/project/actiongame/AssaultCube%20Version%201.1.0.4/AssaultCube_v1.1.0.4.tar.bz2 && tar -xjf AssaultCube_v1.1.0.4.tar.bz2 && mv 1.1.0.4 .AssaultCube_1.1.0.4 && rm AssaultCube_v1.1.0.4.tar.bz2 && cd ~/.AssaultCube_1.1.0.4 && sh install_desktop_menu.sh
Thanks given by: