1つのfor文で複数のインデックス変数を使用する
2059 ワード
クエリのインデックス変数は複数あります.
以下に示すように、複数のインデックス変数をカンマ(
以下に示すように、複数のインデックス変数をカンマ(
,
)で区切ることができます.$ 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
Reference
この問題について(1つのfor文で複数のインデックス変数を使用する), 我々は、より多くの情報をここで見つけました https://velog.io/@khyup0629/shell-script-하나의-for문에서-여러-인덱스-변수-사용하기テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol