首页 > 系统 > WinXP > 正文

syntax error near unexpected token `then'

2024-06-28 13:28:04
字体:
来源:转载
供稿:网友
syntax error near unexpected token `then'

#!/bin/bashclearfunction test{if[$1 -eq "root"]&&[$2 -eq "123456"]thenecho "Right"elseecho "Wrong"fi}

test root 123456

----------------------------

上面这个程序我执行时,报这个错误,刚接触shell,没想到它的语法这么……不说了,在网上找个原因,贴出正确的格式,并总结要注意的几点

=======================

#!/bin/bashclearfunction test{if [ $1-eq"root" ] && [ $2-eq"123456" ]thenecho "Right"elseecho "Wrong"fi}

test root 123456

==========================

总结:

1.if后要有空格

2.[] 中括号的开头和结尾要有空格!

3. [ $1-eq"root" ]中括号中的$1和-eq和"root"之间没有空格!


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表