[EMAIL PROTECTED] said: > Or these messages should going (by an option) to the stdout rather than > stderr, so i can write a parser (gcc a.c | myparser) to convert the > messages.
Ah, but that option does exist already: gcc a.c 2>&1 | myparser :-) Christian