]> Sergey Matveev's repositories - sgmon.git/blob - probelist.sh
28a4eb50826baca97ca5dfa3c7f6f74033259c3f
[sgmon.git] / probelist.sh
1 #!/bin/sh -e
2
3 find . -mindepth 1 -type d -not -name ".*" | while read probe ; do
4     [ -e $probe/run ] || continue
5     echo ${probe#./}
6 done | sort