🎁 New User? Get 20% off your first purchase with code NEWUSER20 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.
Awk
A powerful text processing language for extracting and manipulating structured data from files or command output.
Systemctl
The primary command for managing systemd services, including starting, stopping, enabling, and checking service status.
Firewalld
A dynamic firewall management tool for Linux that provides a D-Bus interface for managing firewall rules with zones.
Network Namespace
A Linux kernel feature that provides isolated network stacks with independent interfaces, routing tables, and firewall rules.
ACL (Access Control List)
An extension to standard Linux file permissions that allows setting fine-grained access rights for specific users and groups beyond owner/group/other.
View All Linux Terms →