[Bash] for でループする

作成日: 2022年03月07日

for でループ処理を行うときのサンプルコードです。

for ((i=0; i<10; i++)); do
  echo $i
done

実行結果は下記の通りです。

0
1
2
3
4
5
6
7
8
9
Bash