[shell script] 하나의 for문에서 여러 인덱스 변수 사용하기
2106 단어 shell scriptshell script
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
Author And Source
이 문제에 관하여([shell script] 하나의 for문에서 여러 인덱스 변수 사용하기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@khyup0629/shell-script-하나의-for문에서-여러-인덱스-변수-사용하기저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)