有curl
可能做
curl http://somedomain.com/originalfilename.tar.gz -o newfilename.tar.gz
curl http://somedomain.com/originalfilename.tar.gz -o /other/path/newfilename.tar.gz
因此,-o
可以重命名要下载的文件名,甚至定义其他路径目录来下载
现在,如果我想保留相同的文件名,则必须使用-O
curl http://somedomain.com/originalfilename.tar.gz -O
因此下载了该originalfilename.tar.gz
文件。
现在
问题
- 如何下载保留其名称的文件(带有
-O
)和定义要下载的目录?
就像是
curl http://somedomain.com/originalfilename.tar.gz -O <download to /some/path>
因此对于 Shell 脚本来说,脚本可以在任何地方执行。我想originalfilename.tar.gz
明确下载该文件/some/path
答案1
您可以使用该选项指定要写入的文档的目录路径--output-dir
。
那是,
curl -O --output-dir /some/path "$URL"
从curl
手册:
--output-dir <dir>
This option specifies the directory in which files should be
stored, when --remote-name or --output are used.
The given output directory is used for all URLs and output
options on the command line, up until the first -:, --next.
If the specified target directory does not exist, the operation
will fail unless --create-dirs is also used.
If this option is used multiple times, the last specified
directory will be used.
Example:
curl --output-dir "tmp" -O https://example.com
See also -O, --remote-name and -J, --remote-header-name. Added
in 7.73.0.