Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

wget multiple urls from file

#!/bin/bash
input="text_file.txt"
while IFS= read -r line
do
  wget $line
done < "$input"
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #wget #multiple #urls #file
ADD COMMENT
Topic
Name
4+5 =