home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Linux Cubed Series 2: Applications
/
Linux Cubed Series 2 - Applications.iso
/
editors
/
emacs
/
xemacs
/
xemacs-1.006
/
xemacs-1
/
lib
/
xemacs-19.13
/
lisp
/
hyperbole
/
file-newer
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-03-11
|
190 b
|
10 lines
#!/usr/local/bin/perl
#file-newer: Return 1 if file 1 is newer than file 2, else 0
$cmp = (stat($ARGV[0]))[9] - (stat($ARGV[1]))[9];
if ($cmp > 0)
{ print "1"; }
else
{ print "0"; }