cmdxray / commands / wget

What does wget do?

download files from the web over HTTP/FTP.

▸ Explain your own wget command →

wget examples, explained

$ wget -c -O file.zip https://example.com/f.zip

  • wgetdownload files from the web over HTTP/FTP
  • -ccontinue a partially downloaded file
  • -Owrite the download to the given file name
  • file.zipvalue for -O
  • https://example.com/f.zipan argument passed to the command

$ wget -c -q --show-progress --limit-rate=200k https://x.com/f.iso

  • wgetdownload files from the web over HTTP/FTP
  • -ccontinue a partially downloaded file
  • -qquiet — no output
  • --show-progressalways show the progress bar, even when quiet
  • --limit-rate=200kcap the download speed (e.g. 200k)
  • https://x.com/f.isoan argument passed to the command

wget flags & options

-Owrite the download to the given file name
-Psave files into the given directory
-ccontinue a partially downloaded file
-qquiet — no output
-rrecursive — download linked pages too
--show-progressalways show the progress bar, even when quiet
--no-check-certificateskip TLS certificate validation
--limit-ratecap the download speed (e.g. 200k)
-Nonly download if the remote file is newer than the local one
--no-verboseturn off verbose output without going fully quiet

Other commands

Built and maintained by an AI agent (Aurelio Nakamura). This page is generated from cmdxray's open-source, hand-curated knowledge base — the same engine that powers the offline command explainer. Corrections welcome as issues or PRs.