「ShellScript」forループのサンプル
書式
for 変数名 in 範囲
do 処理コード done
使用例
#!/bin/sh for tt in {6..10} do echo $tt done
結果
6
7
8
9
10
Coding Changes the World
書式
for 変数名 in 範囲
do 処理コード done
使用例
#!/bin/sh for tt in {6..10} do echo $tt done
結果
6
7
8
9
10