From a513670179e776d75b25084226584af7cc7b284f Mon Sep 17 00:00:00 2001 From: raynor Date: Sat, 17 Dec 2022 18:04:13 -0500 Subject: [PATCH] Allow domains to be commented out --- start-firehose.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/start-firehose.sh b/start-firehose.sh index 90d2088..1450b06 100755 --- a/start-firehose.sh +++ b/start-firehose.sh @@ -1,4 +1,4 @@ -cat domains|while read -r host +cat domains|grep -v "#"|while read -r host do ./get-stream.sh $host & done