[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[ale] redirection stupids
- Subject: [ale] redirection stupids
- From: cfowler at outpostsentinel.com (Chris Fowler)
- Date: Mon, 19 Oct 2009 12:17:16 -0400
- In-reply-to: <[email protected]>
- References: <[email protected]>
does this work
time psql <input.sql 1>outputfromsql 2>timeoutfile
On Mon, 2009-10-19 at 11:44 -0400, Jim Kinney wrote:
> I'm trying to collect the output from time to a file. For an unknown
> reason I have managed to not do the simple redirection process right.
>
> time psql <input.sql >outputfromsql 2>timeoutfile
>
> timeoutfile is created but empty.
>
> according to man 1 time the output is to stderr which _should_still_ be 2.
>
> time 2>timeoutfile psql <input.sql >outputfromsql
> does the same thing.
>
> --