by shigemk2

当面は技術的なことしか書かない

whileでぐるぐる

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