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
- Problem with X (Blank screen). Austin L. Denyer
- Re: Problem with X (Blank screen). billy ball
- Re: Problem with X (Blank screen). Austin L. Denyer
- Re: Problem with X (Blank screen). Chuck Collins
- Re: Problem with X (Blank screen). Adrian D Jensen
- Re: Problem with X (Blank screen). Ian Collier
- Re: Problem with X (Blank screen). Adrian D Jensen
