while문 - 주어진 조건이 참일경우 반복 형식 - while [조건문] do 실행명령 done 예제 스크립트 cnt 변수에 1을 대입하고 10보다 작을때까지 반복한다 숫자계산할때 expr명령어을 쓴다. #!/bin/bash cnt=1 while [ $cnt -lt 10 ] do echo "count" cnt=`expr $cnt + 1` done 결과 # ./while1.sh count count count count count count count count count #!/bin/bash echo "your name is: " read name while [ "$name" != "tom" ]; do echo "not name! your name is: " read name done ---------..