abel-chai / abel-chai.github.io

个人博客
0 stars 0 forks source link

shell批量下载文件 | abel的学习录 #7

Open abel-chai opened 2 months ago

abel-chai commented 2 months ago

https://abel-chai.github.io/2024/07/07/shell%E6%89%B9%E9%87%8F%E4%B8%8B%E8%BD%BD%E6%96%87%E4%BB%B6/

shell 批量下载文件使用 shell 脚本可以批量下载文件(以 wget 命令为例) #!/bin/bash # 文件数组 files=("https://example.com/1.txt" "https://example.com/1.txt") # 下载目录 download_dir="/download/" for ur