我正在尝试下载外部硬盘中的多个文件。
我尝试了很多次,但没有成功:
- 在单独的文件中写入链接
data.txt
wget -i data.txt /directory of external drive
wget --directory-prefix="directory of path where i want to download" data.txt
我还没有成功...有人可以指导我怎么做吗
答案1
你走在正确的道路上。
为什么不直接将最后两个步骤结合起来以达到预期的效果呢:
cd /somepath ; wget -i /anotherpath/data.txt
或者:
wget -i /anotherpath/data.txt --directory-prefix=/somepath