Problems with Rsync

Francis Montagnac Francis.Montagnac at sophia.inria.fr
Fri Apr 2 07:49:31 GMT 2004


> rsync -crzvv --password-file /etc/rsync.passwd --bwlimit=120
> rsync://pub@xxx.xxx.xxx/pub/critical_full_daily/*.* /STOR-1/ >>
> /var/log/rsync.xxx.pulls.xxx 2>&1
...
> Notice that *.* is used , i did this so that i can get all the files in
> the directory. I have also tried *  as the variable.

Then, simply suppress *.* in your command, ie:

  rsync -crzvv --password-file /etc/rsync.passwd --bwlimit=120 \
  rsync://pub@xxx.xxx.xxx/pub/critical_full_daily/ /STOR-1/ >> \
  /var/log/rsync.xxx.pulls.xxx 2>&1

Using such wilcard may fail by generating a too long argument list.

-- 
Francis.Montagnac at sophia.inria.fr, Tel: (33) 04 92 38 79 11, Bur: C112
INRIA Sophia, 2004, rte des Lucioles, B.P.93 - 06902 Sophia Antipolis Cedex


More information about the rsync mailing list