From a5059fafae6893e90d0f29db892823340ac74e1e Mon Sep 17 00:00:00 2001 From: Benjamin Dweck Date: Mon, 7 Jun 2021 08:02:19 +0000 Subject: [PATCH] fixed svc-hostname script error with curl and grep --- tor/svc-hostname | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tor/svc-hostname b/tor/svc-hostname index 5e4aace..ff2a099 100755 --- a/tor/svc-hostname +++ b/tor/svc-hostname @@ -1,6 +1,6 @@ #!/bin/sh -while ! curl -s --socks5 127.0.0.1:9050 'https://check.torproject.org/' | grep -qm1 Congratulations +while ! curl -s -N --socks5 127.0.0.1:9050 'https://check.torproject.org/' | grep -qm1 Congratulations do sleep 0.5 done