wget
How to download a site using wget
wget --mirror --convert-links --backup-converted --html-extension -o domain.log http://domain.com/
Download the file in background.
wget -bd http://domain.com/file.zip -o file-download.log
Will download all the links from the list.txt file and pretending that it’s Firefox.
wget –continue –verbose –input-file=”list.txt” –output-file=”list.log” –user-agent=”Mozilla/5.0 (Windows NT 6.1; WOW64; rv:7.0.1) Gecko/20100101 Firefox/7.0.1″
If you want to ignore the SSL expiration or validity you can pass –no-check-certificate parameter.
wget --no-check-certificate https://url./zip
You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.
Leave a comment.