From: ams AT ludd DOT luth DOT se (Martin Str|mberg) Newsgroups: comp.os.msdos.djgpp Subject: Re: stop screen scrolling Date: 30 Aug 1998 17:50:12 GMT Organization: University of Lulea, Sweden Lines: 16 Message-ID: <6sc3ck$on0$2@news.luth.se> References: <01J17QRAWFWY94JQL7 AT SLU DOT EDU> NNTP-Posting-Host: queeg.ludd.luth.se To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Precedence: bulk GAMMELJL AT SLU DOT EDU wrote: : When I compile with gxx codename.cc -S -v I indeed get a verbose : report about something. But several screens scroll by before I can : read them. I have tried gxx codename.cc -S -v | more and : gxx codename.cc -S -V >prn but the scrolling won't stop. What is : the correct syntax for | more or >prn or whatever? That is the correct syntax for more. This isn't the problem. The problem is that *DOZE can't redirect stderr. Use "redir -eo gxx ... | more". Silence, MartinS