mirror of
https://github.com/Cantera/cantera.git
synced 2025-02-25 18:55:29 -06:00
11 lines
139 B
Bash
Executable File
11 lines
139 B
Bash
Executable File
#!/bin/ksh
|
|
#
|
|
# Test whether $1 has a modification time
|
|
# greater than $2
|
|
#
|
|
if test $1 -nt $2 ; then
|
|
exit 0
|
|
fi
|
|
#echo we are here
|
|
exit 1
|