Re: [RedHat-List] Re: Appending to a file in Bash

1999-11-16 Thread Cameron Simpson
On Tue, Nov 16, 1999 at 05:53:26PM -0600, Mark A. Zottola wrote: | | Thanks. | | "Todd A. Jacobs" wrote: | > | > On Tue, 16 Nov 1999, Mark A. Zottola wrote: | > > time ./a.out >>& summary | > What are you trying to do here? If you want to put it in the background, | > do: | > time ./a.o

Re: Appending to a file in Bash

1999-11-16 Thread Mark A. Zottola
Well, a.out is the name of an executable and time is the timing command. I want to append the output of the time command into the file summary. I would prefer a direct append instead of writing a script to redirect time's output for each run of the program into its separate file then 'cat'ting

Re: Appending to a file in Bash

1999-11-16 Thread Todd A. Jacobs
On Tue, 16 Nov 1999, Mark A. Zottola wrote: > time ./a.out >>& summary What are you trying to do here? If you want to put it in the background, do: time ./a.out >> summary & -- Todd A. Jacobs Network Systems Engineer -- To unsubscribe: mail [EMAIL PROTECTED] with "unsubscribe" as