Re: Send a file?

Tom Oehser <[email protected]> Sat, 1 Nov 2003 15:24:51 -0500 (EST)
Newsgroups gmane.linux.tomsrtbt
Message-ID <[email protected]>
Typically, I use "nc" (netcat).

It is also possible to run the mini httpd and fetch it
on the other machine.

What I like is netcat running on both machines, and
cpio on both ends.  Something like:

nc -l -p 12345 |  cpio -iuvmd # on one machine
find path | cpio -o | nc hostname 12345  # on the other

-Tom


On Sat, 1 Nov 2003, Ron Hudson wrote:

> Date: Sat, 1 Nov 2003 09:18:12 -0600
> From: Ron Hudson <[email protected]>
> To: [email protected]
> Subject: [tomsrtbt] Send a file?
>
> I know how to get a file from another (remote) machine:
>
> wget ftp://username:[email protected]/dir/subdir/file
>
> but how do I send a file?
>