| Author |
Message |
You_Wish
Joined: 02 Nov 2003
Posts: 58
|
| Posted: Sun Nov 02, 2003 2:10 pm Post subject: How do we download files from a web page to our shell on rd8 |
|
|
| How do we download files from a web page to our shell on rd8 |
|
| Back to top |
|
Quik
Joined: 17 Sep 2003
Posts: 124
|
| Posted: Sun Nov 02, 2003 2:12 pm Post subject: |
|
|
You should have wget installed already. As long as you know the exact address of the file, simply type:
wget <file address>
eg. wget http://www.linode.com/images/linode_logo10.gif
That will download a copy of the file to your current directory.
If, for some reason, wget is not installed, typing apt-get install wget should do the trick (I believe it works on RH8 too :)) |
|
| Back to top |
|
You_Wish
Joined: 02 Nov 2003
Posts: 58
|
| Posted: Sun Nov 02, 2003 2:23 pm Post subject: Why doesn't make work in shell |
|
|
Why doesn't make work in shell
wget works now thanks |
|
| Back to top |
|
You_Wish
Joined: 02 Nov 2003
Posts: 58
|
| Posted: Sun Nov 02, 2003 2:42 pm Post subject: Ok my brain is starting to figure this out MAKE is working |
|
|
| Thanks |
|
| Back to top |
|
sunny
Joined: 27 Jul 2003
Posts: 42
Location: New York, NY
|
| Posted: Sun Nov 02, 2003 3:56 pm Post subject: |
|
|
curl !!
curl is much better than wget ....
curl http://host.com > index.html
(You must output to some where)
Sunny Dubey |
|
| Back to top |
|
| |