for i in {1..100000...

2009-11-12 Thread Antonio Macchi
what's the rasonable limit in using this compact contruct, after which the for (( i=0; i1000...; i++ )) became better?

Re: for i in {1..100000...

2009-11-12 Thread pk
Antonio Macchi wrote: what's the rasonable limit in using this compact contruct, after which the for (( i=0; i1000...; i++ )) became better? You didn't even bother trying eh? $ for i in {0..10}; do echo $i/dev/null; done bash: xmalloc: ../../../bash/lib/sh/stringvec.c:40: cannot

Re: for i in {1..100000...

2009-11-12 Thread Jan Schampera
Antonio Macchi schrieb: what's the rasonable limit in using this compact contruct, after which the for (( i=0; i1000...; i++ )) became better? Hardware/OS limits. J.