๐ŸŽ New User? Get 20% off your first purchase with code NEWUSER20 ยท โšก Instant download ยท ๐Ÿ”’ Secure checkout Register Now โ†’
Menu

Categories

Linux Beginner

What is Wget?

A command-line utility for downloading files from the web, supporting HTTP, HTTPS, and FTP protocols.

Wget downloads files non-interactively, making it ideal for scripts and automation. Features include recursive downloading, bandwidth limiting, retry on failure, and resuming interrupted downloads (wget -c).

Common uses: wget URL (download file), wget -r -l 2 URL (recursive, 2 levels deep), wget -i urls.txt (download from list). Curl is an alternative with more protocol support and API-friendly features.

Related Terms

Sysfs (/sys)
A virtual filesystem that exports information about kernel subsystems, hardware devices, and device drivers in a structured hierarchy.
Pipe
A mechanism that connects the output of one command directly to the input of another, enabling command chaining.
Grep
A command-line utility for searching plain-text data for lines matching a regular expression pattern.
SELinux
Security-Enhanced Linux โ€” a mandatory access control system that confines programs to minimum required privileges beyond standard file permissions.
Xargs
A command that builds and executes commands from standard input, useful for processing lists of items.
Systemctl
The primary command for managing systemd services, including starting, stopping, enabling, and checking service status.
View All Linux Terms โ†’