13 lines
202 B
Tcsh
Executable file
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
|