Hi Rick,
This solution is so elegant, so beautiful. It works.
However, when I have this case:
Unix A: \u01\test
Unix B: \u05\
I need \test on Unix A to be copied onto \u05 also as \test, then the same
command doesn't work. I got an error: No such file or directory.
I guess the error is because of no \u01 in Unix B but only \u05
Can you help ?
Oh heaven, I'm rocket scientist drop-out.
For NT: Network Neighborhood/Cut/Paste- Any dummy can do it in NT.
> To copy directory structures to different machines is a little tricky
> try something like this:
> on UNIX-A:
> cd /u01
> tar cvf - ./test | rsh UNIX-B "(cd /u01; tar xvf -)"
> That should do it.. providing you can rsh commands from unix-a to unix-b
> if you get "permission denied", go to unix-b and put the following line
> in /.rhosts
> unix-a root
> then try:
> unix-a% rsh unix-b df
> If that works, you should be all set.
> Regards,
> Rick Niziak
> > Unix A: \u01\test\
> > ......
> > ......
> > Unix B: \u01\
> > I need all \test\ and everything under it on Unix A to be copied over to
> > \u01\ on Unix B.
> > I haven't figure know how this can be done in Unix. I need Cut/Paste
> > as in Windows NT.
> > Thanks,