Home » Linux Download Multiple Files

Linux Download Multiple Files

by Online Tutorials Library

Download multiple files

To download multiple files together, store all the urls in a single file.

Linux Multiple Files1

Look at the above snapshot, we have created a file urls.txt and stored 3 url into it.

Now, we’ll download all these three files together using option i.

Syntax:

Example:

wget -i urls.txt

Linux Multiple Files2

Look at the above snapshot, all three files are downloaded together by passing command “wget -i urls.txt”.

You may also like