13 Security Lab

쉘스크립트 if문 본문

Computer Science/Programming

쉘스크립트 if문

Maj0r Tom 2013. 4. 25. 23:50

if [ conditons ]
then
     조건만족시 실행하고자 하는 문장
elif [ conditons ]
then
     두번째 조건 만족시 실행 문장
else
     조건 불만족시 실행하고자 하는 문장
fi
 

Comments