Hi,

There are two kinds of output: standard(1) and error(2) output. > (aka
1>) only gets the standard output. For getting both in a file, run

make > aa 2>&1

Which means "make standard output to aa, and make the error output (2)
to the same as (1)", so that you get both mixed. For pipes, use

make 2>&1 | more

Samuel
_______________________________________________
This message was sent via the BRLTTY mailing list.
To post a message, send an e-mail to: [email protected]
For general information, go to: http://mielke.cc/mailman/listinfo/brltty

Reply via email to