The wget command in Termux is your passport to downloading files from the internet with ease and efficiency.
When it comes to fetching files from the internet via the command line, the ‘wget’ command is a go-to tool. In this tutorial, we explore the capabilities of ‘wget’ in Termux, showcasing its utility for downloading files and resources.
The “wget” command stands for “Web Get,” and it is a versatile command-line tool for downloading files from the internet. It supports various protocols, making it suitable for retrieving content from HTTP, HTTPS, FTP, and more.
wget
The basic syntax of the “wget” command is as follows :
wget [options] [URL]
Let’s use the “wget” command to download an image from the internet, now lets download this image using wget command:
wget https://bhai4you.com/wp-content/uploads/2024/03/pexels-anjana-sample-scaled.jpg
The “wget https://example.com/image.jpg” command downloads the specified image and saves it in the current directory. you can download anything like apk, video, music by wget command. before paste link make sure it was direct download link.
Common Options :
The “wget” command provides various options to customize downloads. Some common options include :
– –limit-rate : Limit the download speed.
wget --limit-rate=500k https://bhai4you.com/wp-content/uploads/2024/03/pexels-anjana-sample-scaled.jpg
– –recursive (-r) : Download recursively (for entire websites).
wget -r https://bhai4you.com/wp-content/uploads/2024/03/pexels-anjana-sample-scaled.jpg
– –no-clobber (-nc) : Skip downloads that would download to existing files.
wget -nc https://bhai4you.com/wp-content/uploads/2024/03/pexels-anjana-sample-scaled.jpg
wget –help
For a comprehensive list of options and information about the “wget” command, you can use the “–help” flag. Running the following command:
wget --help
The “–help” flag provides detailed documentation on the various options available with the “wget” command, enabling you to tailor your downloads and optimize your interactions with online resources.
Mastering the ‘wget‘ command in Termux enhances your ability to efficiently download files from the internet. Whether limiting download speed, recursively downloading entire websites, or skipping existing files, ‘wget‘ offers flexibility and control.
By exploring ‘wget –help,’ you gain insights into its extensive capabilities, empowering you to navigate online resources seamlessly through the command line.