Two folders !

2005-05-09 Thread BASING Tibor Vovcak
Hello !! I need to sync two folders in fedora linux. Oneis at /ftp/test/test1 Second is at /ftp/test/test1/test3 I need to sync /ftp/test/test1/test3 that new files uploaded will be seen in /ftp/test/test1 every hour or a day . How do i do that ? Thank YOU ALL ! Tibor Vovak Slovenia

Re: Two folders !

2005-05-09 Thread Tony Alexander
On May 9, 2005, at 7:09 AM, BASING Tibor Vovcak wrote: Hello !! I need to sync two folders in fedora linux. Oneis at /ftp/test/test1 Second is at /ftp/test/test1/test3 I need to sync /ftp/test/test1/test3 that new files uploaded will be seen in /ftp/test/test1 every hour or a day . How do i

Re: Two folders !

2005-05-09 Thread Lars Heer
Hi Tibor, crontab -e Make an entry: 0 * * * * /usr/bin/rsync -av /ftp/test/test1/ /ftp/test/test1/test3/ # Means 0 minutes every hour every day... and so on - man cron Save and exit... Lars Am Montag, den 09.05.2005, 13:09 +0200 schrieb BASING Tibor Vovcak: Hello !! I need to sync two

Re: Two folders !

2005-05-09 Thread Terry Dooher
BASING Tibor Vovcak wrote: Hello !! I need to sync two folders in fedora linux. One is at /ftp/test/test1 Second is at /ftp/test/test1/test3 I need to sync /ftp/test/test1/test3 that new files uploaded will be seen in /ftp/test/test1 every hour or a day . How do i do that ? I admit I

Re: Two folders !

2005-05-09 Thread Francis Montagnac
run this script in cron 00* * * * rsync -aucz /ftp/test/test1/ /ftp/test/test1/test3/ Beware: 1. This will create the first time: /ftp/test/test1/test3/test3, then /ftp/test/test1/test3/test3/test3 the second time and so on till filling up the disk. It would

Synchronizing two folders

2002-10-02 Thread Tito Ciuro
Hello, I'm quite new to rsync, and after reading and checking some examples I still have a question regarding synchronization: What arguments should I use if I want to synchronize two folders? I need to make sure that after synchronization, contents on each side are the same. If I have new

Re: Synchronizing two folders

2002-10-02 Thread tim . conway
/LMT/SC/PHILIPS) Subject:Synchronizing two folders Classification: Hello, I'm quite new to rsync, and after reading and checking some examples I still have a question regarding synchronization: What arguments should I use if I want to synchronize two folders? I need