#! /bin/sh 
if test -r $1
then
     echo '[5i'
     cat $1
     echo '[4i'
else
echo Filename must exist and be readable
fi
