1 다음 스크립트를 logical.sh 파일에 작성합니다. 스크립트를 작성하며 어떻게 동작할지 예상해 보세요.
logical.sh
#!/bin/bash
COURSE="Korean" ------------------------ ①
SCORE="99"
if [ "$COURSE" == "Korean" ]; then ----- ②
if [ "$SCORE" -ge 95 ]; then
RESULT="pass"
fi
elif [ "$COURSE" == "English" ]; then
if [ "$SCORE" -ge 85 ]; then
RESULT="pass"
fi
fi
if [ ! "$RESULT" == "pass" ]; then ----- ③
RESULT="fail"
fi
echo "Result is $RESULT"