We can download multiple links using wget -i file_name
where file_name
is the file that contains all URLs we have to download.
I have 3 URLs in a file for example:
google.com
facebook.com
twitter.com
I request these URLs using wget -i file_name
. But, how can we specify files names to store the result?
For example,we have to store result from google.com, facebook.com, twitter.com as response1, response2, response3 respectively. Thanks in advance.