Wget è un'incredibile utility da riga di comando che può essere utilizzata per raschiare le pagine Web, scaricare video e contenuti da siti Web protetti da password, recuperare una singola pagina Web, file mp3 ecc. Funziona anche in condizioni di rete lente e ha la funzionalità di pausa, in modo che riprende automaticamente da dove era stato lasciato.
In questo post, descriverò come puoi usare il comando wget come un professionista usando alcuni esempi utili.
$ wget http://myexample.com/s.tar.gz
$ wget -o page.html http://example.com/somepageurl
# Save it in different directory
$ wget --directory-prefix='./home/user/' johndoe.com
$ wget http://example.com/myfile.tar.gz ftp://42.11.23.4/file.jpg
$ wget --limit-rate=20k http://example.com/myfile.zip
$ wget --page-requisites --convert-links --adjust-extension http://example.com/mywebpage
$ wget -c http://example.com/myfile.rar
$ wget ‐‐input long-list-of-urls.md
$ wget --mirror --no-parent --continue http://example.com
# will download all the mp3 files
$ wget --level=2 --recursive --accept mp3 http://example.com
# will download all jpeg files
$ wget ‐‐level=1 ‐‐recursive ‐‐no-parent ‐‐accept jpg,JPG http://example.com/
wget ‐‐http-user=johndoe ‐‐http-password=somepass http://example.com/secretpath/file.tar.gz