๐ŸŽ 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

Symbolic Link
A special file that acts as a shortcut pointing to another file or directory in the filesystem.
Rsync
A fast, versatile file synchronization tool that efficiently transfers and syncs files between local and remote systems.
Linux Kernel Module
A piece of code that can be loaded into the kernel at runtime to extend functionality without rebooting, such as device drivers and filesystems.
Dmesg
A command that displays kernel ring buffer messages, useful for diagnosing hardware and driver issues.
File Permissions
A security mechanism that controls who can read, write, or execute files and directories in Unix-like systems.
Curl
A versatile command-line tool for transferring data using various network protocols, commonly used for API testing.
View All Linux Terms โ†’