Answers for "wget download list of urls"

2

bash how to download files from a list of links

# Basic syntax:
wget -i list_of_links.txt

# Example usage:
# If you had a list_of_links.txt file containing a list of links like:
www.example.com/1.pdf
www.example.com/2.pdf
www.example.com/3.pdf

wget -i list_of_links.txt # Running this would download all files listed
#	in the list_of_links.txt file
Posted by: Guest on October-04-2020
1

wget download list of urls

wget -i file.txt
Posted by: Guest on November-24-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language