[Shell script]C言語でfor文を記述する
1499 ワード
スクリプトでは、カッコ内のfor文を使用できます.
スクリプトは、式を
for文は、C言語として
スクリプトは、式を
이중 괄호
で計算するか、比較条件文で等号を使用します.for文は、C言語として
이중 괄호
を使用することもできる.$ cat test1
#!/bin/bash
for (( i = 0; i < 10; i++ ))
do
echo "The next number is $i"
done
$ ./test1
The next number is 0
The next number is 1
The next number is 2
The next number is 3
The next number is 4
The next number is 5
The next number is 6
The next number is 7
The next number is 8
The next number is 9
Reference
この問題について([Shell script]C言語でfor文を記述する), 我々は、より多くの情報をここで見つけました https://velog.io/@khyup0629/shell-script-C언어-방식의-for문-작성법テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol