Paolo Bonzini wrote:
> On 05/04/2010 07:32 PM, Jim Meyering wrote:
>> $(AWK) 'BEGIN {for (i=0; i<13000; i++) print "aba"}' > in || fail=1
>
> Isn't an extra /dev/null needed?
Probably, for some versions of awk, but at least for gawk it's not --
in that this does not "hang":
gawk 'BEGIN {for (i=0; i<13000; i++) print "aba"}' > in
To be on the safe side, the test now does this:
$AWK 'BEGIN {for (i=0; i<13000; i++) print "aba"}' /dev/null > in
