Hi,
<br />I need a small information on the way rsync copies the files .
<br />I am writing the files , links to a list file and I am passing the list file to rsync for copying to remote machine.
<br />The contents of the list file (passed to rsync for synchronisation)  are 
<br />
<br />/folder1/folder2/rep/01234018329/FSG2_PULL.txt#79GA91205KAE   --- actual file
<br />/folder1/folder2/users/01234002360/my/FSG2_PULL#79GA91205KAE  ----  link
<br />/folder1/folder2/rep/00000000090/TEST#79GA85630K9X
<br />/folder1/folder2/users/01234002360/my/TEST#79GA85630K9X
<br />/folder1/folder2/rep/00000000090/TEST#79GAL5005KMN
<br />/folder1/folder2/users/01234002360/my/TEST#79GAL5005KMN
<br />/folder1/folder2/rep/00000000090/TEST#79GAL5303KMQ
<br />/folder1/folder2/users/01234002360/my/TEST#79GAL5303KMQ
<br />/folder1/folder2/rep/00000000090/TEST#79GB04321Q0T
<br />/folder1/folder2/users/01234002360/my/TEST#79GB04321Q0T
<br />
<br />After rsync has transferred the files and links the log shown is
<br />
<br />/folder1/folder2/rep/00000000090/
<br />/folder1/folder2/rep/00000000090/TEST#79GA85630K9X
<br />/folder1/folder2/rep/00000000090/TEST#79GAL5005KMN
<br />/folder1/folder2/rep/00000000090/TEST#79GAL5303KMQ
<br />/folder1/folder2/rep/00000000090/TEST#79GB04321Q0T
<br />
<br />/folder1/folder2/rep/01234018329/
<br />/folder1/folder2/rep/01234018329/FSG2_PULL.txt#79GA91205KAE
<br />
<br />/folder1/folder2/users/01234002360/my/
<br />/folder1/folder2/users/01234002360/my/FSG2_PULL#79GA91205KAE -&gt; /folder1/folder2/rep/01234018329/FSG2_PULL.txt#79GA91205KAE
<br />/folder1/folder2/users/01234002360/my/TEST#79GA85630K9X -&gt; /folder1/folder2/rep/00000000090/TEST#79GA85630K9X
<br />/folder1/folder2/users/01234002360/my/TEST#79GAL5005KMN -&gt; /folder1/folder2/rep/00000000090/TEST#79GAL5005KMN
<br />/folder1/folder2/users/01234002360/my/TEST#79GAL5303KMQ -&gt; /folder1/folder2/rep/00000000090/TEST#79GAL5303KMQ
<br />/folder1/folder2/users/01234002360/my/TEST#79GB04321Q0T -&gt; /folder1/folder2/rep/00000000090/TEST#79GB04321Q0T
<br />
<br />The log shows the way the rsync is copying the files to destination dir.
<br />But i want rsync to copy the files the way the files and links are in the list file.
<br />Is it possible with rsync?
<br />If so how is it possible?
<br />
<br />Please help me.