📌  相关文章
📜  bash 如何从链接列表中下载文件 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:49:36.539000             🧑  作者: Mango

代码示例1
# 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