小编典典

如何让 cURL 不显示进度条?

all

我正在尝试在脚本中使用 cURL 并让它 显示进度条。

我已经尝试了-s-silent-S-quiet选项,但它们都不起作用。

这是我尝试过的典型命令:

curl -s http://google.com > temp.html

我只有在将它推送到文件时才会得到进度条,所以curl -s http://google.com没有进度条,但是curl -s http://google.com > temp.html有。


阅读 213

收藏
2022-03-03

共1个答案

小编典典

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
2022-03-03