10 lines
138 B
Bash
Executable file
10 lines
138 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# 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
|