[BRLTTY] performing a make on BRLTTY (fwd)

Samuel Thibault samuel.thibault at ens-lyon.org
Mon Sep 3 03:43:06 EDT 2007


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


More information about the BRLTTY mailing list