#!/bin/ksh
#
#  Return if file exists
#
[[ -e $1 ]]
echo $?
exit 0

