下载外部硬盘中的多个文件

下载外部硬盘中的多个文件

我正在尝试下载外部硬盘中的多个文件。

我尝试了很多次,但没有成功:

  1. 在单独的文件中写入链接data.txt
  2. wget -i data.txt /directory of external drive
  3. 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

相关内容