#!/bin/bash FILE=/etc/rc.d/rc.sysinit if [ ! -e $FILE ] ; the echo "No such file." exit 6 fi if [ -f $FILE ]; then echo "Common file." elif [ -d $FILE ] ; then echo "Directory." else echo "Unknown." fi