#! /bin/sh -
### Return exit code of 0 if the first file is newer than the second file, and 1 otherwise.
### Usage: newer file1 file2

IFS='
 	'

prefix=${prefix-/usr/uumath}
test -d $prefix/bin || prefix=/usr/local

PATH=$prefix/bin:/bin:/usr/bin
export PATH

$prefix/bin/test $1 -nt $2
