Sunday, September 10, 2017

WGet - command-line download manager in archlinux

Wget or GNU WGet is a software that retrieves content from webserver. It's part of the GNU Project. Wget support downloading through HTTP, HTTPS, and FTP.

Wget Features:
- Can resume aborted downloads
- Can use filename wild cards and recursively mirror directories
- NLS-based message files for many differen languages.
More features you can see on : https://www.gnu.org/software/wget/

Installation on archlinux:
$sudo pacman -S wget
Basic usage:
To download file from internet
$wget urlnamefile
Ex:
WGet - command-line download manager in archlinux


Continue download of broken links:
$wget -c urlnamefile

WGet - command-line download manager in archlinux


If your internet have trouble and want to continue download, this option will be help to continue your download. It's also useful to if you have something problem like network error in google chrome. Just copy your download links in chrome, then open terminal, locate to chrome downloads folder, then continue with wget -c chromedownloadfileurl

Download a complete website
To download a complete website you can use this options

$wget -np -r -k urlnamefile

WGet - command-line download manager in archlinux


To see more options of wget
$wget --help

WGet - command-line download manager in archlinux


For more documentation you can visit here:
https://wiki.archlinux.org/index.php/wget
https://www.gnu.org/software/wget/manual/

Share on Facebook
Share on Twitter
Share on Google+