在shell脚本中,我想从一些URL下载一个文件,并将其保存到特定的文件夹。使用curl命令将文件下载到特定文件夹时,我应该使用哪个特定的CLI标志,或者如何获得该结果?


当前回答

对于Windows,在PowerShell中,curl是cmdlet Invoke-WebRequest的别名,这个语法是有效的:

curl "url" -OutFile file_name.ext

例如:

curl "https://airflow.apache.org/docs/apache-airflow/2.2.5/docker-compose.yaml" -OutFile docker-compose.yaml

来源:https://krypted.com/windows-server/its-not-wget-or-curl-its-iwr-in-windows/

其他回答

这对我来说很管用:

curl http://centos.mirror.constant.com/8-stream/isos/aarch64/CentOS-Stream-8-aarch64-20210916-boot.iso --output ~/Downloads/centos.iso 

地点:

——output允许我设置我想放置的文件和扩展文件的路径和命名。

使用wget

wget -P /your/absolut/path "https://jdbc.postgresql.org/download/postgresql-42.3.3.jar"

对于Windows,在PowerShell中,curl是cmdlet Invoke-WebRequest的别名,这个语法是有效的:

curl "url" -OutFile file_name.ext

例如:

curl "https://airflow.apache.org/docs/apache-airflow/2.2.5/docker-compose.yaml" -OutFile docker-compose.yaml

来源:https://krypted.com/windows-server/its-not-wget-or-curl-its-iwr-in-windows/

——output-dir选项从curl 7.73.0开始就可用了:

curl --create-dirs -O --output-dir /tmp/receipes https://example.com/pancakes.jpg

我不认为你可以给curl一个路径,但你可以CD到位置,下载和CD回来。

cd target/path && { curl -O URL ; cd -; }

或者使用subshell。

(cd target/path && curl -O URL)

只有路径存在时,两种方法才会下载。-O保存远程文件名。下载后它将返回到原来的位置。

如果你需要显式地设置filename,你可以使用小的-o选项:

curl -o target/path/filename URL