WGET wiele adresów URL z pliku

#!/bin/bash
input="text_file.txt"
while IFS= read -r line
do
  wget $line
done < "$input"
Careful Caiman