From 4eb5d06cd11657eb50ca6ac238111bdcf14ccc10 Mon Sep 17 00:00:00 2001 From: Valentin Brandl Date: Sun, 7 Jul 2019 20:33:08 +0200 Subject: [PATCH] Fork in loop [ci skip] --- scripts/find-active.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/find-active.sh b/scripts/find-active.sh index 14c5a73..bf6181c 100755 --- a/scripts/find-active.sh +++ b/scripts/find-active.sh @@ -6,5 +6,5 @@ DIR=${1:-repos} for url in $(./scripts/list.sh "${DIR}") do - (curl "${url}" --silent | grep -q hitsofcode) && echo "${url}" + (curl "${url}" --silent | grep -q hitsofcode) && echo "${url}" & done