Subject: Re: sun-lamp CVS commits
To: Gordon W. Ross <gwr@mc.com>
From: David Brownlee <D.K.Brownlee@city.ac.uk>
List: current-users
Date: 10/05/1995 09:50:01
		David/abs

 D.K.Brownlee@city.ac.uk (MIME) +44 171 477 8186  {post,host}master  (abs)
Network Analyst, UCS, City University, Northampton Square, London EC1V 0HB.
        <<< Monochrome - Largest UK Internet BBS - telnet mono.org >>>
>=- Microsoft: Abort and Retry Cancel -or- NetBSD: http://www.netbsd.org -=<

On Wed, 4 Oct 1995, Gordon W. Ross wrote:

> [...]
>
> Yeah, that's cool.  I wondered if there might be a way to use FTP
> but not have to store the tar images locally.  Would this work?
> 
> 	# mkfifo /dev/pipe
> 	# tar xfp /dev/pipe &
> 	# ftp ...
> 	ftp> get some_tar_image /dev/pipe
> 
> I haven't tried it with FTP yet...

Maybe better:
# echo 'tar xfp -' > /tmp/untar
# chmod 755 /tmp/untar
# ftp ...
ftp> get some_tar_image |/tmp/untar 

:)