(standard_in)1: 구문 분석 오류 [중복]

(standard_in)1: 구문 분석 오류 [중복]

이것은 내 스크립트입니다.

#!/bin/sh
# 5. Write a Shell Program to Find the Area & Circumference of a Circle
echo "Enter the Radius"
read radius
arear=`echo 3.14 \* $radius \* $radius |bc`
circu=`echo 2 \* 3.14 \* $radius |bc`
echo "Area of the Circle="$arear
echo "Circumference of the Circle="$circu

그것이 제공하는 오류는 다음과 같습니다.

==============================================
[root@vision aiwa]#sh area.sh
Enter the Radius
9
': not a valid identifieradius
(standard_in) 1: parse error
(standard_in) 2: parse error
Area of the Circle =
Circumference of the Circle =
[root@vision aiwa]#

이 오류가 발생하는 이유는 무엇입니까?

관련 정보