RosettaCodeData/Task/Arrays/UNIX-Shell/arrays-3.sh

6 lines
88 B
Bash
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
x=0
while [[ $x < ${#alist[*]} ]]; do
echo "Item $x = ${alist[$x]}"
: $((x++))
done