wget - is a free utility for non-interactive download of files from the Web

To download a file with wget

To download file with different name
$ wget -O file.zip http://path/to/url.zip

To download multiple files with http and ftp

To download multiple files from a file
$ cat downloads.txt

$ wget -i downloads.txt

To resume uncompleted download

To download files in background
$ wget -b wget.log https://path/to/download_url

To Set File Download Speed Limits
$ wget -c --limit-rate=500k -b wget.log https://path/to/download_url

To download password protected files via http and ftp
$ wget --ftp-user=user1 --ftp-password=pa55code ftp://ftp_url
$ wget --http-user=user2 --http-password=pa55code http://http_url



regards,
T.Dhanasekar