wget

Linux · Network · available in the simulator

What it does

Download files using HTTP, HTTPS, or FTP.

Syntax

wget [opciones] URL

Options and parameters

  • -O

    Write output to the specified file name.

    wget -O pagina.html https://example.com
  • -c

    Resume an interrupted download.

  • -r

    Download recursively.

  • -q

    Quiet mode.

  • -P

    Directory where files are saved.

  • --limit-rate

    Limit download rate.

    wget --limit-rate=200k https://example.com/f.iso

Usage examples

  • wget URL
  • wget -c URL
  • wget -O pagina.html https://example.com
  • wget --limit-rate=200k https://example.com/f.iso
Practise wget

Related commands