SPEC=`ls $1 2>/dev/null | wc -l`
SPEC=`expr $SPEC`

if [ "$SPEC" != "0" ] ; then
  exit 0
else
  exit 1 
fi;
