我正在使用以下代码:
xargs -n 1 curl -O 从文本文件下载所有图像URL。 所有图像都将下载到主目录。 如何指定要下载到的文件夹/目录?
答案 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