I'm looking for the basic loop like:
for(int i = 0; i < MAX; i++) {
doSomething(i);
}
but for bash.
|
1
|
|
|
|
|
|
See: this site
|
||
|
|
|
|
I commonly like to use a slight variant on the standard for loop. I often use this to run a command on a series of remote hosts. I take advantage of bash's brace expansion to create for loops that allow me to create non-numerical for-loops. Example: I want to run the uptime command on frontend hosts 1-5 and backend hosts 1-3:
I typically run this as a single-line command with semicolons on the ends of the lines instead of the more readable version above. The key usage consideration are that braces allow you to specify multiple values to be inserted into a string (e.g. pre{foo,bar}post results in prefoopost, prebarpost) and allow counting/sequences by using the double periods (you can use a..z etc.). However, the double period syntax is a new feature of bash 3.0; earlier versions will not support this. |
||||
|
|
|
if you're intereased only in bash the "for(( ... ))" solution presented above is the best, but if you want something POSIX SH compliant that will work on all unices you'll have to use "expr" and "while", and that's because "(())" or "seq" or "i=i+1" are not that portable among various shells |
||
|
|
|
|
I use variations of this all the time to process files...
If processing lists of files is what you're interested in, look into the -execdir option for files. |
||
|
|
|
The bash So, if you have a limited list of words, just put them in the following syntax:
Probably you want to iterate along some numbers, so you can use the
and use it in the FOR loop:
Note the This is really useful when you have to iterate over all directories in some path, for example:
The possibilities are infinite to generate the lists. |
||
|
|
|
Try the
|
||
|
|
|
|
|
||
|
|