wget is a command line tool available in most linux distributions used to download files.
Install wget
To install, wget on CentOS/RHEL/Fedora, run
yum install wget
On Ubunu/Debian, run
apt-get install wget
Downloading File Using wget
To Download a file using wget, run
wget http://domain/path/to/file.extn
Resume Download using wget
wget can resume file downloads if server support resume feature. To resume download, run wget with -c option.
wget -c https://www.hostonnet.com/video.mkv
Rate Limit Download
You can limit download speed with –limit-rate option.
wget -c --limit-rate=60k https://www.hostonnet.com/video.mkv