On 11/22/16 5:46 PM, Dan Douglas wrote:
> Hi. Here's a change between bash 4.1 and 4.2 that persists in 4.4.
> (Added the counter to make it stop).
Thanks for the incredibly obscure report. This will be fixed in the next
push to the devel branch.
Chet
--
``The lyf so short, the craft so long t
On Wed, Nov 23, 2016 at 1:25 PM, Chet Ramey wrote:
> On 11/22/16 5:46 PM, Dan Douglas wrote:
>> Hi. Here's a change between bash 4.1 and 4.2 that persists in 4.4.
>> (Added the counter to make it stop).
>
> Thanks for the incredibly obscure report. This will be fixed in the next
> push to the dev
See following example:
# echo $BASH_VERSION
4.4.5(2)-release
# ( printf 12345 ) | ( read -t 1 -N 10 v; echo "<$v>" )
<12345>
# ( printf 12345; sleep 2 ) | ( read -t 1 -N 10 v; echo "<$v>" )
<>
#
The second "read" did not save "12345" to "v". Is this a bug?
-clark