wget
CLINetwork downloader supporting HTTP, HTTPS, and FTP.
3 views
Installation
Homebrew
brew install wgetapt
sudo apt install wgetLinks
License
GPL-3.0AI Agent Notes
Download files from the web, supports recursive mirroring
When to use
Downloading files or mirroring websites
Examples
wget https://example.com/file.tar.gzwget -r https://example.com
Proven Recipes
Download a file🟢 98% success
wget https://example.com/file.tar.gzDownload and rename output🟢 99% success
wget -O myfile.zip https://example.com/archive.zipMirror a website🟡 85% success
wget -r -l 2 --no-parent https://example.com/docs/⚠ Common failures (1)
- Too many files downloaded → Add --accept '*.html' to limit file types