나는 이것의 문제점을 알아 내려고 노력했지만 그것을 이해할 수는 없다.
이 부분은 오류가 발생하는 것 같습니다.
elif [ $operation = "man" ]; then
if [ $aug1 = "add" ]; then # <- Line 75
echo "Man Page for: add"
echo ""
echo "Syntax: add [number 1] [number 2]"
echo ""
echo "Description:"
echo "Add two different numbers together."
echo ""
echo "Info:"
echo "Added in v1.0"
echo ""
elif [ -z $aug1 ]; then
echo "Please specify a command to read the man page."
else
echo "There is no manual page for that command."
fi
이 오류가 발생합니다.
calc_1.2: line 75: [: =: unary operator expected
if
75 행 의 진술서에는fi
.