Paladin of the Pegasos            
            
            
            
                             
             
                Posts: 1193 from 2003/2/24            
            
                From: Helsinki, Finland            
    
            
                            
                
			
				wget is a command line application, coming from the "unix world". This means it MIGHT come with sdk, not sure, perhaps not. Anyway, you can find a separate archive on aminet.
Also, if you're using slow and (potentially) unreliable connection, I strongly suggest Adding -c (continue) arg for wget. Whenever local file exists (and server supports it), the download will be resumed, rather than started again from the beginning.
And yes, either put that in shell (or a script).
So basically, wget -c url-of-the-file
This will download files to current directory, so maybe better move somewhere else first (write f.ex. "Work:" to MUI console)
If you have several files to download:
1)Create files.txt file with format:
Quote:
http://meta-morphos.org/download/pack/ultimate.iso
http://some/other/file
etc. (one url per line)
Then do:
Quote:
wget -c -i files.txt 
You might want to combine this with above "wait" version:
Quote:
WaitX T 02:00 wget -c -i files.txt 
Also note:
If you have link in web browser that will start download when clicked, that does NOT automatically mean, it will work if you "copy link location", and do wget "paste link location". Only way to find out is trying though
