获取cron job发出的cURL请求的结果

时间:2011-06-13 19:01:10

标签: curl cron

我通过托管帐户的cPanel设置了一个cron作业。这基本上每隔30分钟调用一个外部URL。我正在使用cURL(由于在共享服务器上,因为wget已禁用)。

我开火的命令如下:

curl http://www.example.com/filename.php

但是,我的电子邮件回复带有生成的HTML(我想要的),但也带有下载信息的前缀:

% Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                Dload  Upload   Total   Spent    Left  Speed

 0     7    0     7    0     0     39      0 --:--:-- --:--:-- --:--:--    39
100   174    0   174    0     0    484      0 --:--:-- --:--:-- --:--:--   917
<html>
 ...
</html>

我可以使用哪个参数来抑制<html>以上的内容?

1 个答案:

答案 0 :(得分:1)

使用-s--silent。见this answer