#!/bin/ksh
#
#  Return which file is newer
#
[[ $1 -nt $2 ]]
echo $?
exit 0

