리눅스 (Linux)

Linux – File download from Web (Command : wget)

FavoriteLoadingAdd to favorites

wget – Command examples for file download

Basic command
$ wget http://www.example.com/scripts/ttt

Download by renamed filename
$ wget -O test.zip http://www.example.com/scripts/ttt

Download speed adjust
$ wget –limit-rate=100k URL

Continuously download
$ wget -c URL

Continuously download – retry
$ wget –tries=100 URL

Several file download using a list file
$ wget -i FILE-List-URLS

Download all files from Web Site
$ wget –mirror -p –convert-links -P ./my-folder downalod-website-URL

Download except specific File
$ wget –reject=gif downalod-website-URL

Create a log file
$ wget -o download.log downalod-website-URL

Not single file download, this is for recursive download
$ wget -Q5m -i FILE-List-URLS

Specific file download from Website
$ wget -r -A .pdf downalod-website-URL

Download files using FTP protocol
$ wget –ftp-user=username –ftp-password=password FTP-URL

 

error: Content is protected !!