我目前正在编写我的第三个Shell脚本,但遇到了问题。到目前为止,这是我的脚本:
#!/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.
我究竟做错了什么?
1
您确定是“ EOF”而不是“ ECF”吗?
—
l0b0