[Shell Script] 쉘스크립트 - if 문

2021. 3. 17. 23:32 기타/Shell script, bash

NULL 체크하기

if [ -z [비교할값] ]
then
    echo "NULL"
else
    echo "NOT NULL"
fi

 

조건 체크하기

if [ [비교할 조건] ]
then
    echo "TRUE"
else
    echo "FALSE"
fi

 

출처 : know-one-by-one.tistory.com/70