On Thu, Nov 7, 2013 at 8:53 PM, Chet Ramey wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> On 11/6/13 10:34 PM, Chris Down wrote:
>> On 2013-11-06 22:23:41 -0500, Chet Ramey wrote:
>>> I'll think about it. I generally don't like to add test cases for features
>>> that are available o
The following surprised me. I thought line 4 of the output, and certainly
line 5 of the output, should have said "0 /dev/fd/63" too. Is this behavior
a bug?
$ cat bug1.bash
#!/bin/bash
count_lines()
{
wc -l $1
wc -l $1
wc -l $1
true | wc -l $1
wc -l $1
}
count_lines <(date)
$