免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2124 | 回复: 3
打印 上一主题 下一主题

请高手帮我看一下这个shell菜单的问题,提示syntax error: unexpected end of file [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-11-21 23:34 |只看该作者 |倒序浏览
#!/bin/bash
#menu
MYDATE=`date +%d/%m/%Y`
THIS_HOST=`hostname -s`
USER=`whoami`
#loop forever!
while :
do
   #clear the screen
    clear
   #here documents starts here
   cat <<MAYDAY
   ______________________________________________________
   
    UserUSER          HostTHIS_HOST      DateMYDATE
   ______________________________________________________

              1 : List files in current directory
              2 : Use  the  vi  editor
              3 : See who is on the system
              H : Help screen
              Q : Exit Menu

   ______________________________________________________
  
   MAYDAY

   #here document finished
   echo -e -n "\tYour Choice [1,2,3,4,H,Q] >"
   read CHOICE
        case $CHOICE in
        1)
          ls
          ;;
        2)
          vi
          ;;
        3)
          who
          ;;
        H|h)
          #use a here document for the help screen
          cat <<MAYDAY
          This is the help screen,nothing here yet to help you!
          MAYDAY
          ;;
        Q|q)
          exit 0
          ;;
        *)
          echo -e "\t unknown user response"
          ;;
        esac
     
     echo -e -n "\tHit the return key to continue"
     read DUMMY
  done

运行后提示错误:

    line 59: syntax error: unexpected end of file

自己是个shell编程的新手,感觉好像是没有正确的结束语句,可是始终找不到解决的方法

请高手指点,小菜鸟不胜感激之至。。

先谢谢了。。

论坛徽章:
0
2 [报告]
发表于 2009-11-21 23:49 |只看该作者
第59行 语法不对。
看E文。

论坛徽章:
0
3 [报告]
发表于 2009-11-21 23:59 |只看该作者

回复 #2 honckly 的帖子

59行是最好一行啊。。我很是纳闷,最后一行是空行。。

论坛徽章:
0
4 [报告]
发表于 2009-11-22 00:24 |只看该作者
谢谢ChinaUNIX的liaosnet 哈!他提示我说用作输入结束的分界符MAYDAY应该顶格写,呵呵,又长知识了。。
十分感谢
呵呵
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP