如何将图像卷曲到特定的文件夹/目录

时间:2019-05-17 21:17:49

标签: curl xargs

我正在使用以下代码:

xargs -n 1 curl -O

从文本文件下载所有图像URL。

所有图像都将下载​​到主目录。

如何指定要下载到的文件夹/目录?

1 个答案:

答案 0 :(得分:0)

curl没有为-O指定下载目录的特定选项。对此的标准解决方法是简单地使命令行首先cd到您选择的目录中,以将文件下载到该目录。

也许是这样的:

#!bin/sh
# figure out where we are
pwd=`pwd`

# go to the download directory
cd /tmp/my-downloads

# Download into the right dir, find the URL file in the original dir
xargs -n 1 curl -O < $pwd/urls.txt