The MASM Forum

Miscellaneous => Hardware & Software Corner => Topic started by: Vortex on April 08, 2013, 12:16:55 AM

Title: wget for Windows
Post by: Vortex on April 08, 2013, 12:16:55 AM
QuoteWget, the non-interactive commandline tool is used for retrieving files using HTTP, HTTPS and FTP, the most widely-used Internet protocols.,

Latest version is 1.11.4, compiled with MS Visual C++ and linked with OpenSSL 0.9.8k.

http://users.ugent.be/~bpuype/wget/
EDIT: the above link no longer works
(a Web search is advised), or look here:
https://www.gnu.org/software/wget/

An example of usage, download the Masm32 package :

wget http://www.oby.ro/masm32/masm32v11r.zip
Title: Re: wget for Windows
Post by: Gunther on April 08, 2013, 12:28:43 AM
Erol,

good hint and a good link.  :t Thank you.

Gunther
Title: Re: wget for Windows
Post by: hutch-- on April 08, 2013, 12:33:16 AM
Funny enough I have had a copy of wget for at least the last 10 years. Long ago I picked up a full set of Unix utilities which I think are GNU and have been using them for years.
Title: Re: wget for Windows
Post by: Vortex on April 08, 2013, 12:38:51 AM
Hi Hutch,

This version of wget has an advantage as it does not depend on any GNU dll. It's only one executable file.
Title: Re: wget for Windows
Post by: Gunther on April 08, 2013, 12:58:37 AM
Quote from: Vortex on April 08, 2013, 12:38:51 AM
This version of wget has an advantage as it does not depend on any GNU dll. It's only one executable file.

that's good news. I'll give it a try.

Gunther
Title: Re: wget for Windows
Post by: hutch-- on April 08, 2013, 01:19:24 AM
Erol,

The GNU utilities I have date from back about 2003 and they don't use a DLL at all. I saw the later ones but prefer the old ones I have.
Title: Re: wget for Windows
Post by: bomz on April 08, 2013, 01:47:55 AM
http://forum.ru-board.com/topic.cgi?forum=62&topic=23213&start=0&limit=1&m=2#1
console wget and curl exist for windows, and many more simple download console utilities
Title: Re: wget for Windows
Post by: Magnum on April 08, 2013, 04:05:14 AM
I understand that wget downloads files, but don't you still have to still know where the file is ?

I guess there is some way I haven't thought of to use it.

Andy
Title: Re: wget for Windows
Post by: Vortex on April 08, 2013, 04:25:45 AM
Hi Magnum,

It's easy. Here is an example. Visit the Masm32 download page. Right click the US Site 1 link and copy the address pointing the zip file. Go to the command line prompt and type :

wget http://website.assemblercode.com/masm32/masm32v11r.zip
Title: Re: wget for Windows
Post by: Magnum on April 08, 2013, 04:45:37 AM
I realize that, but it can be done faster using my browser.
Title: Re: wget for Windows
Post by: Gunther on April 08, 2013, 05:02:32 AM
Andy,

Quote from: Magnum on April 08, 2013, 04:45:37 AM
I realize that, but it can be done faster using my browser.

your prefered browser and wget are using the same protocol in that case (FTP). There shouldn't be a difference.

Gunther
Title: Re: wget for Windows
Post by: Vortex on April 08, 2013, 05:24:23 AM
Hi Magnum,

wget is originally a UNIX \ Linux command-line tool. It's ported to Windows. Using wget, you can also download all the files with the same extension :

wget -r -nd -np --exclude-directories=/archive/trans -A.zip http://website.net/tools

Exluding the /archive/trans directory, wget will retrieve the zip files from website.net/tools
Title: Re: wget for Windows
Post by: dedndave on April 08, 2013, 05:42:53 AM
a nice feature would be to resume a download after a broken connection   :biggrin:
Title: Re: wget for Windows
Post by: Vortex on April 08, 2013, 05:46:42 AM
Hi Dave,

Here is an article to resume broken download :

http://www.cyberciti.biz/tips/wget-resume-broken-download.html
Title: Re: wget for Windows
Post by: Magnum on April 08, 2013, 05:51:13 AM
Gunther

I know that, but using wget, you have to often have know ahead of time what you want to download.

Dave,

It keeps trying if it's supported.

Wget has been designed for robustness over slow or unstable network connections; if a download fails due to a network problem, it will keep retrying until the whole file has been retrieved. If the server supports regetting, it will instruct the server to continue the download from where it left off.