SOURCE CODE:
read i
if [ -f $i ]
then
echo “ It is an ordinary file ”
elif [ -d $i ]
then
echo “ It is a directory file ”
else
echo “ It does not exist ”
fi
OUTPUT:
[examuser35@localhost Jebastin]$ sh type.sh
a
It is a directory file
[examuser35@localhost Jebastin]$ sh big.sh
It is an ordinary file
[examuser35@localhost Jebastin]$ sh i.sh
It does not exist
EmoticonEmoticon