23 Nov 10, 11:28PM
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 ?
ubuntu 1.1.0.4 other terminal download method
|
23 Nov 10, 11:28PM
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 ?
24 Nov 10, 12:16AM
Time for some command line madness :)
[SELECT ALL] Code: 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
24 Nov 10, 10:18AM
(This post was last modified: 24 Nov 10, 10:19AM by RandumKiwi.)
How about this instead? It's fancier:
[SELECT ALL] Code: 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 |
« Next Oldest | Next Newest »
|