Xref: utzoo comp.sys.att:11036 unix-pc.general:6687 Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!swrinde!zaphod.mps.ohio-state.edu!rpi!bu.edu!att!cbnews!cbfsb!cbnewsb.cb.att.com!mark From: mark@cbnewsb.cb.att.com (Mark Horton) Newsgroups: comp.sys.att,unix-pc.general Subject: Re: Are 3B1 "pipes" really slower than molasses? Summary: pipes can be emulated with temp files on disk Message-ID: <1990Nov28.155356.10759@cbfsb.att.com> Date: 28 Nov 90 15:53:56 GMT References: <36256@cup.portal.com> <36310@cup.portal.com> Sender: news@cbfsb.att.com Organization: AT&T Bell Laboratories Lines: 11 If slow pipes are really the problem, you could always use the same workaround that systems without pipes use: disk files. foo | bar can be emulated with foo > /tmp/foo.$$ bar < /tmp/foo.$$ rm /tmp/foo.$$ Of course, this assumes adequate disk space for the temp file. Mark