Displaying 2 results from an estimated 2 matches for "tashaikh".
Did you mean:
shaikh
2007 Apr 25
1
copying directory structure only (not the files) from a remote UNIX box using rsync
Hi,
I am trying to copy the directory structure only from the remote UNIX
box onto the box from which Im executing the rsync.
This is what I tried:
rsync -av --include '*/' --exclude '*' tashaikh@remotebox:/dw/etl/
home/
prod/log/ /export/home/tashaikh/auto/log
The above keeps on executing without returning any result.
I have tried to copy directory structure from another directory on the
same machine itself . The one shown below works:
rsync -av --include '*/' --exclude '*...
2007 Apr 26
0
Need help to rsynch the directory structure only excluding the files from remote to local.
Hi Tim,
I tried using the rsync like how you specified in your example and it
worked fine. But when I tried it between my UNIX box and a remote
server the command would just not complete and give any output
whatsoever.
This is how I did it:
rsync -av --include '*/' --exclude '*' tashaikh@remotebox:/dw/etl/home/
prod/log/ /export/home/tashaikh/auto/log
In the above I need to copy the directory structure under log
directory on the remote box to the log directory on the local box.
Please let me know if I am doing anything wrong or if there is any
other method of doing this.
Thanks,...