如何获取cURL以不显示进度栏?
我正在尝试在脚本中使用cURL,并使其 显示进度栏。
我已经试过了-s
,-silent
,-S
,和-quiet
选择,但他们没有工作。
这是我尝试过的典型命令:
curl -s http://google.com > temp.html
我只在将进度条推送到文件时才得到进度条,所以curl -s http://google.com
没有进度条,但是curl -s
http://google.com > temp.html有。
回答:
curl -s http://google.com > temp.html
适用于Ubuntu 9.10上的curl版本7.19.5(无进度条)。但是,如果由于某种原因在您的平台上不起作用,则可以始终将stderr重定向到/ dev
/ null:
curl http://google.com 2>/dev/null > temp.html
以上是 如何获取cURL以不显示进度栏? 的全部内容, 来源链接: utcz.com/qa/432384.html