Hi,
How do I make the cursor stay on the same line as my prompt?
ie: Enter option: _
rather than:
Enter option:
_
I am using CASE...script below:
#!/usr/bin/ksh
clear
option=0
while [ $option -ne 4 ]
do
clear
echo "1. selection 1 2. seleciton 2"
echo "3. selection 3 4. QUIT"
echo
echo Enter option:
read option
case $option in
1)
/home/bin/expect/xb1.exp
;;
2) /home/bin/expect/xb2.exp
;;
3) /home/bin/expect/xv1.exp
;;
4) echo CIAO!!!!!
;;
esac
done