; d3/b.txt
cat d1/b.txt
(AND its not a link!, it was copied)
- Original Message -
From: "Wayne Davison" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Cc:
Sent: Tuesday, June 27, 2006 6:18 PM
Subject: Re: no true incrementals with rsync?
> On Tue, Jun 27, 2006 at
couldnt you do something like this?:
always running.sh---
while true
do
if file not exists "isrunning.txt"
sh checkfiles.sh
sleep 30
done
checkfiles.sh---
# compare dirlist here
if [ need to run rsync ] and [file not exist "isrunning.txt"]
touch isrunning.txt
rsync ...
I tried compare-dest... does it automatically hardlink, or does
link-dest hardlink or both? may my problem is I tested on a cygwin
windose macine and there is no linking.
On 6/26/06, Wayne Davison <[EMAIL PROTECTED]> wrote:
On Mon, Jun 26, 2006 at 10:15:38AM -0700, tim594 wrote:
> With tradition
what about scripts running every 30 seconds on each machine,
thats lighter then rsync just to compare..
eg.
Server1
ls -lR /* > ~/files1
scp files1 SERVER2:~
Server2
ls -lR /* > ~/files2
(do a diff command here on files1 vs. files2)
(if different, then run rsync -u)
- Or