On Mon, 1 May 2006, Wayne Davison wrote:
On Sat, Apr 29, 2006 at 01:48:28PM -0400, Gary Aviv wrote:
However, at the destination the .. is missing. for example
the link "../python/compile_plan.py" becomes "python/compile_plan.py"
at the destination.
Is your daemon runnin
ompile_plan.py" becomes "python/compile_plan.py"
at the destination.
Gary Aviv
This e-mail and any attachments are confidential and may also be legally privileged and/or copyright material of Intec Telecom Systems PLC (or its affiliated companies). If you are not an intended or autho
On Fri, 8 Nov 2002, Lachlan Cranswick wrote:
>
> What should be the official behaviour here?
>
> I must admit some of my scripts probably have both
> trailing and non-trailing "/". But just played around
> until it was mirroring into the correct directory.
>
> Lachlan.
>
I think it should
It appears that the trailing slash in the source is being ignored:
rsync -auv clam::root/usr/local/bin/ /tmp/bin
ends up with files under /tmp/bin/bin
where
rsync -auv clam:/usr/local/bin/ /tmp/bin
works as expected.
rsync -auv 'clam::root/usr/local/bin/*' /tmp/bin
also works as expected.