On Tue, Oct 9, 2018 at 7:29 AM Ken Chase wrote:
> . is the 'current directory' notation in unix.
Yes, I know what dot means to Unix. However, my question is: What is
the meaning (to rsync) of the last two arguments to rsync when rsync
is called with the --server option.
> .. is the parent dire
. is the 'current directory' notation in unix.
.. is the parent directory.
/kc
On Mon, Oct 08, 2018 at 01:57:09PM -0700, Parke via rsync said:
>Hello,
>
>I ran the following commands:
>
>rsync /tmp/foo remote:
>rsync remote:/tmp/foo .
>
>On the remote computer, the following com
Hello,
I ran the following commands:
rsync /tmp/foo remote:
rsync remote:/tmp/foo .
On the remote computer, the following commands were executed:
rsync --server -e.LsfxC . .
rsync --server --sender -e.LsfxC . /tmp/foo
Does anyone know, what is the meaning of the three dots/periods in the
above