On 29.06.2011 13:42, Maarten Billemont wrote:
On 27 Jun 2011, at 16:25, Chet Ramey wrote:

[...]
Exactly, let's draw the array in the example:

arr=(a b c)
values:  [ a | b | c ]
indexes: 0   1   2   3

[...]

4 members?

$ arr=(a b c)
$ for x in 0 1 2 3; do printf "<%s>\n" "${arr[x]}"; done
<a>
<b>
<c>
<>

Reply via email to