From: eplmst AT lu DOT erisoft DOT se (Martin Stromberg) Newsgroups: comp.os.msdos.djgpp Subject: Re: warning and error dump Date: 14 Sep 2001 07:22:49 GMT Organization: Ericsson Erisoft AB, Sweden Lines: 12 Message-ID: <9nsb89$7lk$1@antares.lu.erisoft.se> References: NNTP-Posting-Host: merope.lu.erisoft.se X-Newsreader: TIN [version 1.2 PL2] To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com SandMan (sandman AT rainzman1 DOT 4t DOT com) wrote: : all "standart" programmers may get some errors and warnings after a compile, : what parameter should I use for dump this messages to a file? It depends on the shell you use. In bash you'd use "gcc ... >error.log 2>&1". COMMAND.COM doesn't have this feature, so you use "redir -eo gcc ... >error.log". Right, MartinS