Re: getting files off a remote machinex
Tom Oehser <[email protected]> Tue, 27 May 2003 19:40:59 -0400 (EDT)
| Newsgroups | gmane.linux.tomsrtbt |
|---|---|
| Message-ID | <[email protected]> |
Just use netcat (nc) for moving things around. First use telnet so that you have both machines visible. In one machine, do something like: cd ROOTDIR; nc -l -p 12345 | cpio -iuvmd on the other, something like: find PATHS | cpio -o | nc HOSTNAME 12345 Yes, you can use nfs, or rsh/rshd, or httpd, or wget, but netcat is almost foolproof and almost always works in all situations. It is simple, reliable, fast, and good to have in your bag of tricks. -Tom