How to catch ENTER key inside the shell script?
Hi,
I have a script in which i have to ask user to press the ENTER key to proceed further. can you please help me how can i achive this in my scripting?
echo "All the executables builded Successfully "
echo " Press Enter to Go Back to the Main Menu"
read key
if [ $key == 13 ]
then
main_menu_selector
fi
Thanks in Advance.....
Plaban
|