Are 3B1 "pipes" really slower than molasses?

Mark Horton mark at cbnewsb.cb.att.com
Thu Nov 29 02:53:56 AEST 1990


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



More information about the Comp.sys.att mailing list