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