外壳脚本语法错误: 文件意外结束

在下面的脚本中,我得到一个错误:

语法错误: 文件意外结束

这个错误是什么,我怎样才能解除它? 它指向的行,当函数被调用。

#!/bin/sh


expected_diskusage="264"
expected_dbconn="25"
expected_httpdconn="20"
expected_cpuusage="95"
#expected_fd="100"


httpdconn=`ps -ef|grep -i httpd|grep -v grep|wc -l` #httpd connections
cpu_usage=`ps aux|awk 'NR > 0 { s +=$3 }; END {print s}'`
disk_usage=`df -h|awk {'print $2'}|head -n3|awk 'NF{s=$0}END{print s}'`
#db_connections=`mysql -uroot -pexxxxxx -s -N -e "show processlist"|wc -l`


db_connections=6
cld_alert()
{
nwconn=$1
cpu_usage=$2
disk_usage=$3
db_connections=$4
message=$5
`touch /tmp/alert.txt && > /tmp/alert.txt`
date=`date`
echo -e "$date\n" > /tmp/alert.txt
echo -e "$message" >> /tmp/alert.txt
path="/proc/$httpd/fd/";
cd $path
tfd=`ls -l|wc -l`;
sfd=`ls -ltr|grep sock|wc -l`;
echo "Total fds: $tfd" >> /tmp/alert.txt
echo "Socket fds: $sfd" >> /tmp/alert.txt
echo "Other fds: $[$tfd - $sfd]" >> /tmp/alert.txt




freememory=`vmstat | awk '{if (NR == 3) print "Free Memory:"\$4}'`;
echo "Free memory :$freememory" >> /tmp/alert.txt
Bufferedmemory=`vmstat | awk '{if (NR == 3) print "Buffered Memory:"\$5}'`;
echo "Buffered memory $Bufferedmemory" >> /tmp/alert.txt
CacheMemory=`vmstat | awk '{if (NR == 3) print "Cache Memory:"\$6}'`;
echo "Cache memory : $CacheMemory" >> /tmp/alert.txt
sshconn=`netstat -an|grep 22|wc -l`  #ssh connections
httpsconn=`netstat -an|grep 443|wc -l`  #https connections
wwwconn=`netstat -an|grep 80|wc -l`  #www connections
echo "Disk usage is $disk_usage" >> /tmp/alert.txt
echo "DB connections $db_connections" >> /tmp/alert.txt
echo "Network connections $nwconn" >> /tmp/alert.txt
echo "CPU Usage: $cpu_usage" >> /tmp/alert.txt
topsnapshot=`top -n 1 -b`
echo "===========================TOP COMMAND    SNAPSHOT====================================================";
echo "$topsnapshot" >> /tmp/alert.txt
echo"==================PS COMMAND SNAPSHOT=============================================================="
entireprocesslist=`ps -ef`
echo "$entireprocesslist" >> /tmp/alert.txt




echo Hello hi"";


}






message=""
if [ ${disk_usage%?} -le $expected_diskusage ]    ##{x%?} Removes last character
then
echo "disk usage exceeded";
message="Disk usage limit exceeded \nCurrent disk usage is $disk_usage\nConfigured disk usage is    $expected_diskusage\n\n\n\n\n";
#Checking for CPU usage
if [ $cpu_usage -ge $expected_cpuusage]    ##{x%?}
then
echo "CPU usage exceeded";
if [ $message -ne "" ]
then
message="$message\n\nCPU usage exceeded configured usage limit \nCurrent CPU usage is $cpu_usage\nConfigured CPU usage is $expected_cpuusage\n\n\n\n\n";
else
message="CPU usage exceeded configured usage limit \nCurrent CPU usage is   $cpu_usage\nConfigured CPU usage is $expected_cpuusage\n\n\n\n\n";
fi ;
fi
#Checking for httpd connections
if [ $httpdconn -ge $expected_httpdconn]    ##{x%?}
then
echo "HTTPD connections exceeded";
if [ $message -ne "" ]
then
message="$message\n\nHTTPD connections exceeded configured usage limit \nCurrent HTTPD connections is $httpdconn\nConfigured HTTPD connection is $expected_httpdconn";
else
message="HTTPD connections exceeded configured usage limit \nCurrent HTTPD connections is $httpdconn\nConfigured HTTPD connection is $expected_httpdconn";
fi ;
fi ;
message="$message\n\n\n\n\n";
value=$(cld_alert $message $httpdconn $cpu_usage $disk_usage $db_connections)
470419 次浏览

你有一个未闭的引号,括号,括号,如果,循环,或其他。

如果仅仅通过查看无法看到它(我建议使用语法着色编辑器和简洁的缩进样式) ,那么复制一份脚本,删除其中的一半,将其中应该有效的部分删除。如果脚本尽可能地运行,那么问题就在另一半。重复这些步骤,直到你缩小了问题的范围。

编辑: 请注意,原来的职位已经编辑,因为这个答案是写,并已重新格式化。您应该查看历史记录以查看原始格式,以理解此答案的上下文。

这种错误经常发生在结构不匹配的情况下——也就是说,没有匹配的双引号、匹配的单引号、没有关闭控制结构(如缺少 iffi或缺少 fordone)。

发现这些问题的最好方法是使用正确的缩进和语法突显,前者会显示出哪里的控制结构出了问题,后者会显示出哪里的引号不匹配。

在这个特殊的例子中,我可以看到您缺少一个 fi。在代码的后半部分,您有5个 if和4个 fi。然而,您还有许多其他问题-您的反引号 touch /tmp/alert.txt...命令在语法上是无效的,并且您需要在 if测试的大括号前面加一个空格。

清理您的代码,错误就会开始显现出来。

echo"==================PS COMMAND SNAPSHOT=============================================================="

必须如此

echo "==================PS COMMAND SNAPSHOT=============================================================="

否则,将搜索名为 echo"===...的程序或命令。

更多问题:

如果执行 grep (- A1: + 1行上下文)

grep -A1 "if " cldtest.sh

你会发现一些嵌入的 if 和4个 if/then 块。

grep "fi " cldtest.sh

只显示了3个匹配的 fi 语句,所以你也忘了一个 fi。

我同意,从一开始就正确的缩进有助于避免这样的错误。以后找到所需的方法意味着在这种意大利面条式的代码中要做双重工作。

这篇文章很有帮助,我发现我的错误在于使用了 else if而不是 elif,就像这样:

if [ -z "$VARIABLE1" ]; then
# do stuff
else if [ -z "$VARIABLE2" ]; then
# do other stuff
fi

修正了这个问题:

if [ -z "$VARIABLE1" ]; then
# do stuff
elif [ -z "$VARIABLE2" ]; then
# do other stuff
fi

在我的例子中,我发现放置 here 文档(如 sqplus... < EOF)缩进的语句也会产生如下所示的错误:

./dbuser_case.ksh: line 25: syntax error: unexpected end of file

移除了这个的压痕之后,就没问题了。

希望能帮上忙。

我在尝试使用文本板执行在 WindowsOS 中创建的脚本文件时遇到了同样的错误。这样就可以选择合适的文件格式,比如 unix/mac 等等。或者在 linux 中重新创建脚本。

我在 Cygwin 写剧本的时候遇到了这个问题。通过在脚本上运行 dos2unix修正了这个问题,并在 那个答案中给出了问题的正确描述和解决方案

我发现这有时是由于运行文件的 MSDos 版本造成的。如果是这样的话,我们应该解决这个问题。

dos2ux file1 > file2

使用块时的缩进会导致这种错误,而且很难找到。

if [ ! -d /var/lib/mysql/mysql ]; then
/usr/bin/mysql --protocol=socket --user root << EOSQL
SET @@SESSION.SQL_LOG_BIN=0;
CREATE USER 'root'@'%';
EOSQL
fi

上面的例子会导致一个错误,因为 EOSQL 是缩进的。如下所示,删除缩进。发布这个是因为我花了一个多小时才发现这个错误。

if [ ! -d /var/lib/mysql/mysql ]; then
/usr/bin/mysql --protocol=socket --user root << EOSQL
SET @@SESSION.SQL_LOG_BIN=0;
CREATE USER 'root'@'%';
EOSQL
fi

在我的情况下,问题是在 EOL 转换。(行结束)。

我在 windows 上创建了这个文件,只有在我把 EOL 从 windows (CR LF)转换成 unix (LF)之后,一切都很顺利。

我用 Notepad + + 很容易地从 编辑-> EOL 转换-> Unix (LF)进行了转换

这也可能是由于在一条直线上的一对花括号的管道。

这种做法失败了:

{ /usr/local/bin/mycommand ; outputstatus=$? } >> /var/log/mycommand.log 2>&1h
do_something
#Get NOW that saved output status for the following $? invocation
sh -c "exit $outputstatus"
do_something_more

而这是允许的:

{
/usr/local/bin/mycommand
outputstatus=$?
} >> /var/log/mycommand.log 2>&1h
do_something
#Get NOW that saved output status for the following $? invocation
sh -c "exit $outputstatus"
do_something_more

与 OP 的问题无关,但我的问题是我是一个菜鸟 shell 脚本程序员。我使用的所有其他语言都需要括号来调用方法,而 shell 似乎不喜欢这样。

function do_something() {
# do stuff here
}


# bad
do_something()


# works
do_something