📜  wget 从文件中获取多个 url - Shell-Bash 代码示例
📅  最后修改于: 2022-03-11 14:51:41.838000             🧑  作者: Mango
代码示例1
#!/bin/bash
input="text_file.txt"
while IFS= read -r line
do
wget $line
done < "$input"