if test -e "$1"
	then
		echo "$1 is a regular file in the working directory"
	else
		echo "$1 is NOT a regular file in the working directory"
fi
