echo "Enter file name:"
read fname

if [ -r $fname ]
then
	echo "File is Readable"
else
	echo "File is not Readable"
fi

1 Comment

Leave a Reply to Unix shell script from basic to advance – AppXwinD Technology Cancel reply

Your email address will not be published. Required fields are marked *