현재 세 번째 쉘 스크립트를 작성 중이며 문제가 발생했습니다. 이것은 지금까지 내 스크립트입니다.
#!/bin/bash
echo "choose one of the following options : \
1) display all current users \
2) list all files \
3) show calendar \
4) exit script"
while read
do
case in
1) who;;
2) ls -a;;
3) cal;;
4) exit;;
esac
done
스크립트를 실행하려고하면 다음과 같이 표시됩니다.
line2 : unexpected EOF while looking for matching '"'
line14 : syntax error: unexpected end of file.
내가 무엇을 잘못하고 있지?