need to compare timestamps

rado rado at rivers-bend.com
Wed Apr 6 18:28:36 UTC 2005


> > 
> > 2 machines
> > set up ssh passwordless
> > need to be in a script
> > /tmp/<file> on both machines
> > 
> > I need to compare the timestamps and get the newest
> > 
> > thx
> > 
> > John Rose
> > 
> > 
> > 
> 
> John,
> 
> 
> filetime1=`stat --format=%Y $FILENAME1`
> filetime2=`ssh hostname stat --format=%Y $FILENAME2`
> if [ $filetime1 -gt $filetime2 ]
> 
> 	do something if filetime1 > filetime2
> 
> fi
> 
> --format=%Y gets the last modification time.
> 
> Bob...
> 
thx, Bob, lemme try

thx
jr





More information about the users mailing list