How do I iterate over a range of numbers in bash? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T19:49:03Z http://stackoverflow.com/feeds/question/169511 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/169511/how-do-i-iterate-over-a-range-of-numbers-in-bash 8 How do I iterate over a range of numbers in bash? eschercycle 2008-10-04T01:38:43Z 2009-04-08T19:17:09Z <p>How do I iterate over a range of numbers in bash when the range is given by a variable?</p> <p>I know I can do this:</p> <pre><code> for i in {1..5}; do echo $i; done </code></pre> <p>Which gives:</p> <blockquote> <p>1<br /> 2<br /> 3<br /> 4<br /> 5</p> </blockquote> <p>Yet how can I replace either of the range endpoints with a variable? This doesn't work:</p> <pre><code>END=5 for i in {1..$END}; do echo $i; done </code></pre> <p>Which prints:</p> <blockquote> <p>{1..5}</p> </blockquote> http://stackoverflow.com/questions/169511/how-do-i-iterate-over-a-range-of-numbers-in-bash/169514#169514 0 Answer by Greg Hewgill for How do I iterate over a range of numbers in bash? Greg Hewgill 2008-10-04T01:41:02Z 2008-10-04T01:41:02Z <p>My version of bash doesn't seem to support the curly brace notation at all.</p> <p>Can you do this?</p> <pre><code>for i in `echo {1..$END}`; do echo $i; done </code></pre> <p>Update: I found a bash that supports the curly braces; the above does not work.</p> http://stackoverflow.com/questions/169511/how-do-i-iterate-over-a-range-of-numbers-in-bash/169515#169515 2 Answer by Peter Hoffmann for How do I iterate over a range of numbers in bash? Peter Hoffmann 2008-10-04T01:41:23Z 2008-10-04T01:41:23Z <p>You can use</p> <pre><code>for i in $(seq $END); do echo $i; done </code></pre> http://stackoverflow.com/questions/169511/how-do-i-iterate-over-a-range-of-numbers-in-bash/169517#169517 12 Answer by Jim Robert for How do I iterate over a range of numbers in bash? Jim Robert 2008-10-04T01:41:55Z 2008-10-04T01:41:55Z <pre><code>for i in `seq 1 $END`; do echo $i; done</code></pre> http://stackoverflow.com/questions/169511/how-do-i-iterate-over-a-range-of-numbers-in-bash/169518#169518 0 Answer by paxdiablo for How do I iterate over a range of numbers in bash? paxdiablo 2008-10-04T01:42:39Z 2008-10-04T01:42:39Z <p>This works for me in bash:</p> <pre><code>END=5 i=1 ; while [[ $i -le $END ]] ; do echo $i ((i = i + 1)) done </code></pre> http://stackoverflow.com/questions/169511/how-do-i-iterate-over-a-range-of-numbers-in-bash/169602#169602 9 Answer by ΤΖΩΤΖΙΟΥ for How do I iterate over a range of numbers in bash? ΤΖΩΤΖΙΟΥ 2008-10-04T02:38:48Z 2008-10-04T23:06:30Z <h1>discussion</h1> <p>Using <code>seq</code> is fine, as Jim Robert suggested. Pax Diablo suggested a bash loop to avoid calling a subprocess, with the additional advantage of being more memory friendly if $END is too large. Zathrus spotted a typical bug in the loop implementation, and also hinted that since i is a text variable, continuous conversions to-and-fro numbers are performed with an associated slow-down.</p> <h1>integer arithmetic</h1> <p>This is an improved version of the bash loop:</p> <pre><code>typeset -i i END let END=5 i=1 while ((i&lt;=END)); do echo $i … let i++ done </code></pre> <p>If the only thing that we want is the <code>echo</code>, then we could write <code>echo $((i++))</code>.</p> <p><a href="http://stackoverflow.com/questions/169511/how-do-i-iterate-over-a-range-of-numbers-in-bash#171041">ephemient</a> taught me something: bash allows <code>for ((expr;expr;expr))</code> constructs. Since I've never read the whole man page for bash (like I've done with the ksh man page, and that was a long time ago), I missed that.</p> <p>So,</p> <pre><code>typeset -i i END # let's be explicit for ((i=1;i&lt;=END;++i)); do echo $i; done </code></pre> <p>seems to be the cleanest way, and possibly the "fastest"; it sure won't be necessary to allocate memory to consume <code>seq</code>'s output, which could be a problem if END is very large.</p> <h1>the initial question</h1> <p>eschercycle noted that the {<em>a</em>..<em>b</em>} bash notation works only with literals; true, accordingly to the bash manual. One can overcome this obstacle with a single (internal) <code>fork()</code> without an <code>exec()</code> (as is the case with calling <code>seq</code>, which being another image requires a fork+exec):</p> <pre><code>for i in $(eval echo "{1..$END}"); do </code></pre> <p>Both <code>eval</code> and <code>echo</code> are bash builtins, but a <code>fork()</code> is required for the command substitution (the <code>$(…)</code> construct).</p> http://stackoverflow.com/questions/169511/how-do-i-iterate-over-a-range-of-numbers-in-bash/171041#171041 4 Answer by ephemient for How do I iterate over a range of numbers in bash? ephemient 2008-10-04T21:43:47Z 2008-10-04T21:43:47Z <p>The <code>seq</code> method is the simplest, but Bash has built-in arithmetic evaluation.</p> <pre><code>END=5 for ((i=1;i&lt;=END;i++)); do echo $i done # ==&gt; outputs 1 2 3 4 5 on separate lines </code></pre> <p>The "<code>for ((expr1;expr2;expr2))</code>" construct works just like "<code>for (expr1;expr2;expr3)</code>" in C and similar languages, and like other <code>((expr))</code> cases, Bash treats them as arithmetic.</p>