hoc/scripts/find-active.sh

11 lines
162 B
Bash
Raw Permalink Normal View History

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