for문의 인덱스 변수는 여러 개를 사용할 수도 있습니다.
아래와 같이 쉼표(,
)로 구분해 여러 개의 인덱스 변수를 사용할 수 있습니다.
$ cat test1
#!/bin/bash
for (( i = 0, j = 10; i < 10; i++, j-- ))
do
echo "The next number is $i, $j"
done
$ ./test1
The next number is 0, 10
The next number is 1, 9
The next number is 2, 8
The next number is 3, 7
The next number is 4, 6
The next number is 5, 5
The next number is 6, 4
The next number is 7, 3
The next number is 8, 2
The next number is 9, 1