指定回数分繰り返しコマンドを実行する

指定回数分繰り返しコマンドを実行するワンライナーです。

for i in {1..100} ; do echo "Hello, ${i}times!" ; sleep 1 ; done

コメント