cantera/bin/tscompare_csh
2006-04-30 23:29:06 +00:00

13 lines
202 B
Tcsh
Executable file

#!/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