Name

for

Synopsis

for ((init; cond; incr))
do
    commands 
done

Arithmetic for loop, similar to C's. Evaluate init. While cond is true, execute the body of the loop. Evaluate incr before retesting cond. Any one of the expressions may be omitted; a missing cond is treated as being true.

Example

Search for a phrase in each odd chapter:

for ((x=1; x <= 20; x += 2))
do
    grep $1 chap$x
done

Get bash Quick Reference now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.