[EMAIL PROTECTED] on 04/07/2000 03:40:10 PM
>On Fri, Apr 07, 2000 at 02:23:16PM -0700, Adrian D Jensen >wrote:
> Try doing a "startx 2>&1 |tee start.log" (you should be >able to us a ">"
> instead
> of the "|tee" but it never seems to work on mine)
>
>The order of redirection matters. It's
>
> prog1 2>&1 | prog2
>
>but it's
>
> prog1 > file 2>&1
>
>but bash accepts
>
> prog1 &> file
>
>as shorthand for the latter.
>
>imc
Wow, it works. How screwy, tell it what to write after you've aready told it
where what to write. Linux, learn something new every day.
Adrian