#!/bin/bash
printf "Checking rule: %-40s" $1
. ./$1
if [ $? -eq 0 ]
then    echo "[O.k.]" 
else    echo "[Errors]"
fi
