WGET命令在终端(MAC)中使用brew
wget -E -H -k -K -p -e robots=off -P ./images/ -i./list.txt
./list.txt: No such file or directory
No URLs found in ./list.txt.
Converted links in 0 files in 0 seconds.
我下载并安装了啤酒。此外,我安装了WGET,它让我一次下载图像。但是,当我尝试使用上述命令从多个URL下载图像时,它没有做任何事情。有人可以告诉我我在这里做错了什么吗?
wget -E -H -k -K -p -e robots=off -P ./images/ -i./list.txt
./list.txt: No such file or directory
No URLs found in ./list.txt.
Converted links in 0 files in 0 seconds.
I downloaded and installed brew. Further, I installed wget and it's letting me download images one image at a time. However, when I tried the aforementioned command to download images from multiple urls, it's not doing anything. Can someone tell me what I could be doing wrong here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
WGET
非常清晰,问题的描述显然没有名为
list.txt
内部的文件。请尝试为list.txt
提供完整的路径。wget
is pretty lucid with description of issueapparently there is not file named
list.txt
inside current dir. Please trying giving full path tolist.txt
.