मैं वर्तमान में अपनी तीसरी शेल स्क्रिप्ट लिख रहा हूं और मैं एक समस्या में चला गया हूं। यह मेरी अब तक की पटकथा है:
#!/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.
मैं क्या गलत कर रहा हूं?