$ wget -c -O file.zip https://example.com/f.zip
$ wget -c -q --show-progress --limit-rate=200k https://x.com/f.iso
| -O | write the download to the given file name |
| -P | save files into the given directory |
| -c | continue a partially downloaded file |
| -q | quiet — no output |
| -r | recursive — download linked pages too |
| --show-progress | always show the progress bar, even when quiet |
| --no-check-certificate | skip TLS certificate validation |
| --limit-rate | cap the download speed (e.g. 200k) |
| -N | only download if the remote file is newer than the local one |
| --no-verbose | turn off verbose output without going fully quiet |
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.