File: newer

package info (click to toggle)
exim4 4.84-8
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 13,316 kB
  • sloc: ansic: 94,930; sh: 4,216; xml: 2,046; makefile: 585; perl: 557; python: 109
file content (21 lines) | stat: -rwxr-xr-x 462 bytes parent folder | download | duplicates (15)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#! /bin/sh

# Script to determine whether the first file is newer than the second.
# If the first does not exist, the answer is "no";
# if the second does not exist, the answer is "yes";
# otherwise their ages are compared using "find".

if [ $# -ne 2 ]; then
  echo "*** Two file names needed for 'newer' ***"
  exit 2;
fi

if [ ! -f $1 ]; then exit 1; fi
if [ ! -f $2 ]; then exit 0; fi

case `find $1 -newer $2 -print` in
'')	exit 1;;
*)	exit 0;;
esac

# End