Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 12 Jul 2007 10:15:25 -0500
From:      Doug Poland <doug@polands.org>
To:        Pat Singer <patsingerfbsd@yahoo.com>
Cc:        freebsd-questions@freebsd.org
Subject:   Re: Transfering a File From One Server To Another
Message-ID:  <20070712151525.GA14896@polands.org>
In-Reply-To: <528487.97567.qm@web45002.mail.sp1.yahoo.com>
References:  <528487.97567.qm@web45002.mail.sp1.yahoo.com>

next in thread | previous in thread | raw e-mail | index | archive | help
On Thu, Jul 12, 2007 at 07:42:07AM -0700, Pat Singer wrote:
> Hi;
>   I have a server that's screwed up. I'm building out another server
>   now. I need to transfer a 1/2G file from the old one. FTP doesn't
>   work. I tried this: wget http://203.223.111.11/path/to/file It
>   connected to the machine but threw a 404. Ideas?  TIA,
>
This is a nice fit for netcat.

target# nc -l 1234 > file
source# nc target 1234 < file

man nc(1) for details and other tricks


-- 
Regards,
Doug



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20070712151525.GA14896>