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

Reply via email to