wget - Download Files in Linux

From the Linux Essential Commands cheat sheet · Networking · verified Jul 2026

wget - Download Files

Download files from the web with resume capability

bash
# Download file
wget https://example.com/file.zip

# Continue interrupted download
wget -c https://example.com/large-file.iso

# Download quietly
wget -q https://example.com/file.zip

# Mirror website
wget -m https://example.com
✅ Better than curl for downloading large files
💡 -c resumes interrupted downloads
🔍 Automatically retries failed downloads
networkdownloadwget

Continue with Linux Essential Commands

Save the full cheat sheet or work through every related task.

More Linux tasks

Back to the full Linux Essential Commands cheat sheet