bug-bash
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Severe Bash Bug with Arrays


From: Greg Wooledge
Subject: Re: Severe Bash Bug with Arrays
Date: Wed, 25 Apr 2012 16:15:24 -0400
User-agent: Mutt/1.4.2.3i

On Wed, Apr 25, 2012 at 04:05:15PM -0400, Chet Ramey wrote:
> OK.  Now make the call move_to_high_fd(0, 1, -1) and see if that fixes it.

cyclops:/var/tmp/bash/bash-4.2$ ./bash ~/foo                                    
<hi>
cyclops:/var/tmp/bash/bash-4.2$ ./bash -c 'shopt -s lastpipe; echo hi | read 
foo; echo "<$foo>"'
<hi>
cyclops:/var/tmp/bash/bash-4.2$ ./bash < ~/foo
<hi>

So those three cases work.  I tried one other test for grins (remember
that ulimit -n is 128):

cyclops:/var/tmp/bash/bash-4.2$ ./bash -c 'shopt -s lastpipe; exec 3</dev/null 
4</dev/null 5</dev/null 125</dev/null 126</dev/null; echo hi | read foo; echo 
"<$foo>"'
<hi>

Looks good at first glance.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]