Understand this: Wget command to get list of files without downloading
CALL OF DUTY MODERN WARFARE DIGITAL DOWNLOAD PS4 ONLINE | Nvidia driver manager download |
AMPLIFIED BIBLE FREE DOWNLOAD FOR PC | Red hot chili peppers greatest hits album download free |
STAR WARS COMPLETE CROSS SECTIONS PDF FREE DOWNLOAD | Wet bandits nz free mp3 download |
DOWNLOAD CLIPS FROM NINTENDO SWITCH TO PC | How to download gif from twiter |
wget command Examples
The command wget is used mostly to retrieve files from external resources via HTTP or FTP, in this article we’ll provide several examples on how to use it
Downloading a file using wget
The following command will download a file via a HTTP request
wget domain.com/file.txtThis will save it under the same name as it was on the server, you can save it under a desired name. Notice that files should keep their extensions
wget -O myFile.txt domain.com/file.txtThis can be used to download external files necessary for a project
Downloading a JavaScript file:
wget https://code.jquery.com/jquery-3.3.1.min.jsDownloading a single file via FTP
wget could be used to download files via FTP as well as via HTTP, you’ll have to know your credentials and the Hostname or IP of the FTP server
wget --ftp-user=FTP_USERNAME --ftp-password='FTP_PASSWORD' ftp://URL/PATH_TO_FILE/FILE_NAMEDownloading all files in a directory
The syntax is the same as with a single file, however, there’s a trailing * at the end of the directory instead of a specified file
wget --ftp-user=FTP_USERNAME --ftp-password='FTP_PASSWORD' ftp://URL/PATH_TO_FTP_DIRECTORY/*Download a file in the background
You can download a file in the background
wget -bq domain.com/file.txtDownload the full HTML file of a website
You can replicate the HTML content of a website with the –mirror option (or -m for short)
wget -m http://domain.comDownloading multiple files
You can download multiple files that have their URLs stored in a file, each on its own line
cat urls.txt url1.com/file url2.com/file url3.com/filewget -i urls.txtExperiment with different wget commands or use the above-mentioned wget examples on our cheap cPanel hosting packages, Linux SSD VPS plans or Linux Dedicated Servers.
-
-