> If I have pages of errors/warnings, I prefer: > > make 2>&1 |less > > Then I can see what's working at the same time as what's not. > >
If it's a large amount, I like both the output, and a text file (instead of scrollback) make 2>&1 | tee make.out So it saves it to make.out and shows it on the screen. jef

