- 论坛徽章:
- 0
|
原帖由 timdcn 于 2008-9-25 16:27 发表 ![]()
while :
!!!!!!!!!!!!!!!!!!
谢谢ms不行阿。我的代码是这样的
#!/bin/sh
#Program:
# The program will show a menu in the screen and do different things according to user's choice.
#History:
#2008/9/25 Sun 0.1
mydate=`date +%d/%m/%Y`
local_host=`hostname -s`
user=`whoami`
# begin loop forever
while :
do
tput clear
cat <<mayday
-------------------------------------------------------------------------------------------
User: $user Host: $local_host Date mydate
-------------------------------------------------------------------------------------------
1 : List files in the current directory
2 : Use the vi editor
3 : See who is on the system
H : Help screen
Q : Exit Menu
--------------------------------------------------------------------------------------------
mayday
echo -e -n " \tYour choice [1,2,3,H,Q] >"
read choice
case $choice in
1) ls
;;
2) vi
;;
3) who
;;
H|h)
cat <<mayday
This is the help screen,nothin here yet to help you!
mayday
;;
Q|q) exit 0
;;
*) echo -e "\tunknown user response"
;;
esac
echo -e -n "\tHit the return key to continue"
read dummy
done
提示:line 47:syntax error :unexpected end of file |
|