#!/bin/sh
echo "enter a file name:"
read a
if test -e /root/$a
then echo "the file is exist!"
else echo "then file is not exit!"
fi