if [ -z "$1" ]; then
 echo "Usage: checkStatus.sh filename"
 exit 1
fi
if [ ! -f $1 ]; then
 echo "FILE ${1} is not accessible"
 exit 1
fi