[: =: unary operator expected
쉘 스크립트 중 해당 부분에서 발생
$ if [ $VARIABLE = "a" ]; then
$ if [[ $VARIABLE = "a" ]]; then
$ if [ "$VARIABLE" = "a" ]; then
쉘 스크립트 실행 시 변수가 포함된 if문에서 변수가 아무 값이 들어오지 않을 경우,
아래와 같이 bash 가 인식하여 발생하는 오류
$ if [ = "a" ]; then
Reference : https://stackoverflow.com/questions/13617843/unary-operator-expected