Bashで指定回数ループする処理は、for i in {x..y}
という書き方がお手軽です。
main.sh
#!/bin/bash
for i in {1..3}
do
echo $i
done
実行結果
1
2
3
Go to list of users who liked
More than 5 years have passed since last update.
Bashで指定回数ループする処理は、for i in {x..y}
という書き方がお手軽です。
#!/bin/bash
for i in {1..3}
do
echo $i
done
1
2
3
Register as a new user and use Qiita more conveniently
Go to list of users who liked