Tôi hiện đang viết kịch bản shell thứ ba của mình và tôi đã gặp phải một vấn đề. Đây là kịch bản của tôi cho đến nay:
#!/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
Khi tôi cố chạy tập lệnh, nó sẽ báo:
line2 : unexpected EOF while looking for matching '"'
line14 : syntax error: unexpected end of file.
Tôi đang làm gì sai?