hoc/scripts/find-active.sh
Valentin Brandl 4eb5d06cd1
Fork in loop
[ci skip]
2019-07-07 20:33:08 +02:00

11 lines
162 B
Bash
Executable File

#!/usr/bin/env sh
set -e
DIR=${1:-repos}
for url in $(./scripts/list.sh "${DIR}")
do
(curl "${url}" --silent | grep -q hitsofcode) && echo "${url}" &
done