GNU Wget is a free utility for non-interactive download of files from the Web. It supports HTTP, HTTPS, and FTP protocols, as well as retrieval through HTTP proxies. The syntax is:
wget https://cyberciti.biz/foo/bar.tar.gz
If you don't want about checking the validity of the certificate just pass the option --no-check-certificate to the wget command-line:
wget --no-check-certificate https://cyberciti.biz/foo/bar.tar.gz
You can pass the --no-proxy option to the wget command. This option tells wget not to use proxies, even if the appropriate `*_proxy' environment variable is defined:
wget --no-proxy https://cyberciti.biz/foo/bar.tar.gz
Set https proxy using httpd_proxy variable:
export https_proxy="https://USERNAME-HERE:PASSWORD-HERE@Server-Name-Here:PORT-NUMBER-HERE/" export https_proxy="https://vivek:TopSecretePassword@server1.cyberciti.biz:3128/" wget https://cyberciti.biz/foo/bar.tar.gz</kbd>
Or pass proxy server username and password to the server using wget command as follows:
export https_proxy="https://server1.cyberciti.biz:3128/" wget --http-user="USER" --http-password="PASSWORD" https://cyberciti.biz/foo/bar.tar.gz</kbd>
You should follow me on twitter here or grab rss feed to keep track of new changes.
Featured Articles:
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop













{ 0 comments… add one now }