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: | glen herrmannsfeldt <gah@ugcs.caltech.edu> |
Newsgroups: | comp.compilers |
Date: | 25 Feb 2007 13:27:41 -0500 |
Organization: | Compilers Central |
References: | 07-02-051 07-02-053 |
Keywords: | tools, Java |
Posted-Date: | 25 Feb 2007 13:27:41 EST |
Bill Cox wrote:
(snip)
> 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.
That is the same as the Bourne shell and its derivatives.
For csh and such:
command.exe >& file
(Though you may get surprising results in windows if you do
this with command.exe.)
-- glen
Return to the
comp.compilers page.
Search the
comp.compilers archives again.