Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要以不同的名称下载多个相同的文件,这可以使用 curl 吗?
例子
同一张图片需要下载3次,名称为file1 file2 file3
我试过谷歌搜索,但没有适合我的结果
当然?
curl https://example.com/image.jpg -o file1 \ https://example.com/image.jpg -o file2 \ https://example.com/image.jpg -o file3
-Z如果您希望它们并行下载,您甚至可以添加...
-Z
这就是说,这完全没有必要,您最好在一次下载后制作文件副本。