首页 > 系统服务 > 详细

Shell script fails: Syntax error: “(” unexpected

时间:2015-07-22 18:05:59      阅读:265      评论:0      收藏:0      [点我收藏+]

Shell script fails: Syntax error: “(” unexpected

google 一下。

http://unix.stackexchange.com/questions/45781/shell-script-fails-syntax-error-unexpected

 

The script does not begin with a shebang line, so the kernel executes it with /bin/sh. On Ubuntu, /bin/sh is dash, a shell designed for fast startup and execution with only standard features. When dash reaches line 68, it sees a syntax error: that parenthesis doesn‘t mean anything to it in context.

Since dash (like all other shells) is an interpreter, it won‘t complain until the execution reaches the problematic line. So even if the script successfully started at some point in your testing, it would have aborted once line 68 was reached.

The shebang line must be the very first thing in the file. Since you use bash features, the first line of the file must be #!/bin/bash or #!/usr/bin/env bash.

 

就是把第一行改为 #!/bin/bash 或者  #!/usr/bin/env bash  

Shell script fails: Syntax error: “(” unexpected

原文:http://www.cnblogs.com/ioio/p/4668087.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!