[shell script] 하나의 for문에서 여러 인덱스 변수 사용하기

HYEOB KIM·2022년 4월 18일
0

Shell

목록 보기
22/71

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
profile
Devops Engineer

0개의 댓글