我用 wget 调用一个 url:
/usr/bin/wget --read-timeout=7200 https://site_url/s
在这种情况下,Wget 每 15 分钟执行一次 GET 请求,尽管设置了超时,为什么会发生这种情况?
该调用只能进行一次,如何将 wget 设置为“不重试”?
我知道你可以设置t=n
,但 0 是无限的,1 是比我想要的多 1 的。
答案1
再次阅读手册页:
-t number
--tries=number
Set number of tries to number. Specify 0 or inf for infinite
retrying. The default is to retry 20 times, with the exception
of fatal errors like "connection refused" or "not found" (404),
which are not retried.
用于-t
定义尝试(尝试)次数,而不是重试次数。