Date: Sun, 6 Jul 1997 23:03:34 +0100 (BST) From: George Foot Message-Id: <199707062203.XAA22675@sable.ox.ac.uk> To: jdashiel AT eagle1 DOT eaglenet DOT com (Jude DaShiell) Cc: djgpp AT delorie DOT com Subject: Re: redir question Organization: Oxford University, England Precedence: bulk In article Jude DaShiell wrote: : Is it possible using redir.exe to cause all output from stdout and : all utput from stderr to be caught in a single log file? From reading the useage info : both isn't mentioned in that documentation. Just now i tried: : redir -o tests.log -e tests.log makeall : to try and test the installation of djgpp. tests.log came back with 0k length : so that particular method doesn't work. The redir utility parses options in the order they appear, so: redir -o tests.log -eo makeall Then redir directs all output to tests.log, and then directs all errors to wherever the output is going. So they both go to tests.log. The order is important I think. -- George Foot Merton College, Oxford