আমি বর্তমানে আমার তৃতীয় শেল স্ক্রিপ্ট লিখছি এবং আমি একটি সমস্যার মধ্যে পড়েছি। এটি এখন পর্যন্ত আমার স্ক্রিপ্ট:
#!/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.
আমি কি ভুল করছি?