#!/bin/csh
#
#  Test whether $1 has a modification time
#  greater than $2
#
test $1 -nt $2 
set tres = $status
# echo "tres = " $tres
if ( $tres == "0" )  then
  exit 0
endif
# echo we are here
exit 1
