Related articles |
---|
Running Java Cup - Options wookiz@hotmail.com (wooks) (2007-02-16) |
Re: Running Java Cup - Options bill@qswtools.com (Bill Cox) (2007-02-25) |
Re: Running Java Cup - Options leonardo@dcc.ufmg.br (Leonardo Teixeira Passos) (2007-02-25) |
Re: Running Java Cup - Options owong@castortech.com (Oliver Wong) (2007-02-25) |
Re: Running Java Cup - Options gah@ugcs.caltech.edu (glen herrmannsfeldt) (2007-02-25) |
From: | Bill Cox <bill@qswtools.com> |
Newsgroups: | comp.compilers |
Date: | 25 Feb 2007 12:46:11 -0500 |
Organization: | SBC http://yahoo.sbc.com |
References: | 07-02-051 |
Keywords: | Java, parse |
Posted-Date: | 25 Feb 2007 12:46:11 EST |
wooks wrote:
> I have a bazillion conflict messages coming from CUP. How can I
> redirect the output to a file so that I can read them. I am runnig
> from the windows command line. I've tried the normal > and it doesn't
> work.
>
Be sure you're running cmd.exe, then use a command line like this:
command.exe > file 2>&1
It's the same notation as the Unix shell uses. It saves the stdout and
stderr stream both to the same file.
Return to the
comp.compilers page.
Search the
comp.compilers archives again.