bash shell(배쉬 쉘) : Bourne Again Shell , 명령어 Line Shell
— 변수 할당 :
e.g. vCount=$(echo $output | ls -1 <path> | wc -l) , <path>내 파일 갯수를 vCount에 할당한다.
–조건문 :
e.g. centos 7 기준, 문자열 비교
if [ <문자열변수> = “문자열” ]
then
…
else
…
fi
e.g. centos 7 기준, 숫자 비교
if [ <숫자변수> gt 0 ]
then
…
else
…
fi