Coomand to download from HTTP(URL)


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users Coomand to download from HTTP(URL)
# 1  
Old 08-23-2006
Coomand to download from HTTP(URL)

Hi,

What is the UNIX command to download a file or data from HTTP location.
CURL(Linux) did not work.

Thank You
# 2  
Old 08-23-2006
I use wget
Code:
wget [URL]

# 3  
Old 08-24-2006
lwp-download - fetch large files from the net

Code:
lwp-download [-a] <url> [<local file>]

The lwp-download program will down load the document specified by the URL given as the first command line argument to a local file.
# 4  
Old 08-24-2006
Thank You Smilie , But the command "wget" and "lwp-download" are not found in our Unix. Looks like, they are Linux version commands.
# 5  
Old 08-24-2006
Quote:
Originally Posted by skm123
Thank You Smilie , But the command "wget" and "lwp-download" are not found in our Unix. Looks like, they are Linux version commands.
What is your UNIX, anyway? You never said.

None of these are Linux-specific; wget in particular works on anything from DOS to VMS to Windows to UNIX. You simply do not have any of them installed. You may be able to build them from source. http://www.gnu.org/software/wget/index.html
http://curl.haxx.se/

Ruling out curl, wget, and lwp-download rules out the three most popular pieces of software for this. I really don't think we're keeping any top-secret Standard UNIX URL Downloader(tm) from you. Smilie

Last edited by Corona688; 08-24-2006 at 11:04 PM..
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Programming

Download http picture using C++

Dear all, I am working on writing the script which can read a file (having the html path for some pictures) and download those picture in the given local directory. Please find my iniatitve here, however I am still not able to figure out the 'download' command. Any help is appreciated. ... (1 Reply)
Discussion started by: emily
1 Replies

2. Shell Programming and Scripting

HTTP::DAV module errors - can't access URL

Hello, I am attempting to use the HTTP/DAV module in perl, and I have a script that transfers files to a website. However, I get the following error message: "Couldn't open https://www.thisismyurl.com/DAV: The URL "https://www.thisismyurl.com/DAV" is not DAV enabled or not accessible." ... (0 Replies)
Discussion started by: Scatterbrain26
0 Replies

3. Shell Programming and Scripting

Download and Untar any URL

Hi, I am trying to make a flexible bash script which does the following: Downloads a URL from a variable Unzips it Deletes the original archive The problem is, the format could be .tar, .tar.gz etc, it wont be constant. This is what I have currently: #!/bin/bash dl_dir="/opt" ... (1 Reply)
Discussion started by: Spadez
1 Replies

4. Shell Programming and Scripting

URL download checking

Hi all, I have a url and i am using wget to load files from the url. but i requirement is if need to validate whether that downloading process done properly not. if that has any expcetion i need to seed mails. otherwise i will processed please help me on this. Thanks, Baski (1 Reply)
Discussion started by: baskivs
1 Replies

5. Shell Programming and Scripting

File download from HTTP::DAV

Hi, I have DOX server. I have to download latest file using HTTP:: DAV. at present am using get method with file name ABC*, it downloads all the files. But I need to download only latest file. Any help?? Thanks, Raja. (0 Replies)
Discussion started by: smr_rashmy
0 Replies

6. Shell Programming and Scripting

sending http url through http socket programming..

hi am senthil am developing a software to send and receive SMS using HTTP connection first of all am forming a URL and sending that URL to a remote server using my Client Program i send that url through Socket(using Send() Function) if i send more than one URL one by one using the same... (4 Replies)
Discussion started by: senkerth
4 Replies

7. Programming

sending http url through http socket programming..

hi am senthil am developing a software to send and receive SMS using HTTP connection first of all am forming a URL and sending that URL to a remote server using my Client Program i send that url through Socket(using Send() Function) if i send more than one URL one by one using the same... (0 Replies)
Discussion started by: senkerth
0 Replies

8. Shell Programming and Scripting

stripping http and https from a url using sed

I have to write a sed script which removes http and https from a URL. So if a URL is https://www.example.com or Example Web Page, script should return me Example Web Page i tried echo $url | sed 's|^http://||g'. It doesn't work. Please help (4 Replies)
Discussion started by: vickylife
4 Replies

9. UNIX for Dummies Questions & Answers

Any URL'S for free Unix Download

Hi, Can anyone please suggest me a URL where I can download some unix OS free of cost?? Thanks, Kumar (4 Replies)
Discussion started by: yelamarthi
4 Replies

10. UNIX for Dummies Questions & Answers

GCC via Http-Download?

Hello all, i am looking for a long time now after GCC. I cannot download it via FTP, thatīs the problem. Is somebody here who knows where i can get it over HTTP?? Regards and Thank You, Chris (5 Replies)
Discussion started by: cyberbloodgoat
5 Replies
Login or Register to Ask a Question