gpt4 book ai didi

Bash:从文件列表下载文件

转载 作者:行者123 更新时间:2023-12-01 14:00:58 26 4
gpt4 key购买 nike

我有一个名为 files.txt 的文件,其中包含我要下载的所有文件。

文件.txt

http://file/to/download/IC_0000.tpl
http://file/to/download/IC_0001.tpl

如果我使用
cat files.txt | egrep -v "(^#.*|^$)" | xargs -n 1 wget

下载所有文件。

但我不知道如何使用 If files.txt 只包含没有 http 的文件

文件.txt
IC_0000.tpl
IC_0001.tpl

我只有这个参数的“wget”:
Usage: wget [-c|--continue] [-s|--spider] [-q|--quiet] [-O|--output-document FILE]
[--header 'header: value'] [-Y|--proxy on/off] [-P DIR]
[--no-check-certificate] [-U|--user-agent AGENT] [-T SEC] URL...

你能帮我吗。

非常感谢。

最佳答案

只需尝试 wget -i files.txt (见 http://www.gnu.org/software/wget/manual/wget.html#Logging-and-Input-File-Options)

如果文件中没有主机,请尝试:

for i in `cat files.txt`; do wget "${HOST}/${i}"; done

关于Bash:从文件列表下载文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27334926/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com