쉘 스크립트 작성하기_(반복문)
for 구문[표현식]for VAR in VAR_LISTdostatemnetdone while 구문[표현식]while conditiondostatementsdone [참고] shiftshift는 인자를 하나씩 당겨쓴다. # cat shift.sh #!/bin/ksh while [ $# -gt 0 ] do echo "$# : $*" shift done # ./shift.sh 1 2 3 4 5 5 : 1 2 3 4 54 : 2 3 4 53 : 3 4 52 : 4 51 : 5 [참고] until 구문while 구문의 부정 형태 거의 사용되고 있지 않다. [형식]until conditiondostatementsdonebreak 명령어내장 명령어 break는 루프를 즉시 탈출하고자 하는 경우에 사용된다. conti..