#!/bin/sh

DIRS=`find . -type d -maxdepth 1 -mindepth 1 -not -name CVS`

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