gpt4 book ai didi

linux - 如何使用 curl 调用 php 先获取文件 url 然后下载?

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:07:02 25 4
gpt4 key购买 nike

在我的网络服务器上,PHP 代码可以获得最新的文件列表。

在另一台Linux服务器上,我想使用CRONcURL调用这段PHP代码先获取文件列表,然后下载文件。

curl http://www.website.com/index.php 

此代码有效,其结果是字符串 URL。 (例如:http://www.website.com/files/new.zip)

但是,我不知道如何将此字符串发布到 curl 以下载此文件。我要做的是这样的:

curl -O (curl http://www.website.com/index.php )

我怎样才能使这项工作?谢谢。

最佳答案

你快到了:

curl $(curl "http://www.website.com/index.php")

如果你想隐藏进度:

curl $(curl -s "http://www.website.com/index.php")

看起来 OP 在输出的 URL 中有换行符/插入符返回,所以 http://.... 变成了 .ttp://....

关于linux - 如何使用 curl 调用 php 先获取文件 url 然后下载?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44723011/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com