I have a program that spits out both standard error and standard out, and I want to run my pager less on the standard error, but ignore standard out. How do I do that?
Update:
That's it ... I didn't want to lose stdout ... just keep it out of pager
program 2>&1 >log | less
then later
less log