2014-04-14 whileでぐるぐる Linux #!/bin/bash count=0 while : do # 何かの処理 if test $count -eq 45 then break fi # インクリメント let count=${count}+1 done