in reply to
Re: glob quietly fails
in thread glob quietly fails
Hello RichardK.
glob fails silently as QM saids with my perl. How does this code say with your platform?
for (my $q =1; $q < 10000; $q++){
my @x = ( 'A' x $q, 'B' x $q );
my $glob = '{' . join(',', @x) . '}';
my $g = join(',', glob($glob));
if (length $g == 0){
print "fail silently, q=$q\n";
last;
}
}
Mine stops saying
fail silently, q=511
perl -v
This is perl 5, version 12, subversion 2 (v5.12.2) built for i386-freebsd-thread-multi-64int
regards.