#!/bin/sh

DIRS=`find . -maxdepth 1 -mindepth 1 -type d -not -name CVS | grep -v .git`

for f in $DIRS; do
    ./chk_mibs $f; 
done
