Hello,
I am trying to compile bash for my own kernel (http://www.barbux.net)
But I have a slight problem:
In file, nojobs.c, line 235
return (get_termsig (pid_list[i].status));
That line does not compile because get_termsig is waiting a WAIT
parameter.
static int get_termsig (WAIT status)
On my FC5 box, when I try certain things in bash 3.1.7(1)-release
involving redirection, such as the following, bash crashes
(immediately exits):
{ echo a >&3 ; } 3> >( echo b )
I've only tried this from an interactive shell. Unfortunately I don't
have bashbug or bashversion, as I'm using the FC
Yang wrote:
On my FC5 box, when I try certain things in bash 3.1.7(1)-release
involving redirection, such as the following, bash crashes
(immediately exits):
{ echo a >&3 ; } 3> >( echo b )
That toasts "3.00.15(1)-release" (FC4 IIRC), but not 3.1.17. I would
apply patches 8-17 and try again.
On Wed, Oct 04, 2006 at 03:38:12PM -0400, Yang wrote:
> On my FC5 box, when I try certain things in bash 3.1.7(1)-release
> involving redirection, such as the following, bash crashes
> (immediately exits):
>
> { echo a >&3 ; } 3> >( echo b )
>
> I've only tried this from an interactive shell. Unf
"Yang" <[EMAIL PROTECTED]> writes:
> On my FC5 box, when I try certain things in bash 3.1.7(1)-release
> involving redirection, such as the following, bash crashes
> (immediately exits):
>
> { echo a >&3 ; } 3> >( echo b )
It doesn't crash, it just receives a SIGPIPE, since the process in the
pro