Date: Wed, 18 Sep 1996 13:00:05 +0200 (IST) From: Eli Zaretskii To: Norman Culver Cc: djgpp AT delorie DOT com Subject: Re: Make and long filenames ? In-Reply-To: <323F398D.3606@icanect.net> Message-Id: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII On Tue, 17 Sep 1996, Norman Culver wrote: > Same here. Also make373 will crash Win95 if you do: > > redir -eo make -? >tempfile What did you expect? You just use `redir' incorrectly. The correct command line to achieve what you want (as far as I understand it) is this: redir -o tempfile -eo make -? Which says: redirect stdout to tempfile, then redirect stderr to where stdout is redirected, then spawn `make -?'. Does this run for you?