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

时间:2012-03-27 08:58:31

标签: shell sh

在以下脚本中,我收到错误:

  

语法错误:意外的文件结尾

这是什么错误我怎样才能恢复它?它指的是调用函数的行。

#!/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)

12 个答案:

答案 0 :(得分:77)

编辑:请注意,自编写此答案并重新格式化以来,原始帖子已被编辑。您应该查看历史记录以查看原始格式以了解此答案的上下文。

当您的结构不匹配时,通常会发生此错误 - 也就是说,您没有匹配的双引号,匹配单引号,没有关闭控件结构,例如缺少fi if ,或遗失done for

发现这些的最佳方法是使用正确的缩进,它会显示您控制结构损坏的位置,以及语法突出显示,它将显示引号不匹配的位置。

在这种特殊情况下,我可以看到你错过了fi。在代码的后半部分,您有5 if和4 fi s。但是,您还有许多其他问题 - 您的反引号touch /tmp/alert.txt...命令在语法上无效,并且在if测试的结束括号之前需要一个空格。

清理代码,错误开始凸显。

答案 1 :(得分:10)

在我的情况下,我发现放置一个here文档(如sqplus ...<<<<<< EOF)语句缩进也会引发同样的错误,如下所示:

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

所以在删除了这个缩进后,它就没问题了。

希望它有所帮助...

答案 2 :(得分:7)

就我而言,问题出在EOL转换中。 (行尾)。

我在Windows上创建了文件,只有在我将EOL从Windows(CR LF)转换为unix(LF)之后,一切都进展顺利。

我很容易从Notepad ++进行转换:编辑 - > EOL转换 - > UNIX(LF)

答案 3 :(得分:4)

我在cygwin中运行一些脚本时遇到了这个问题。通过在脚本上运行dos2unix来修复,并在that answer

中给出了问题和解决方案的正确描述

答案 4 :(得分:4)

我发现这有时是由运行MS Dos版本的文件引起的。如果是这样的情况,dos2ux应该解决这个问题。

dos2ux file1 > file2

答案 5 :(得分:3)

使用块时的缩进可能会导致此错误,并且很难找到。

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

=&GT;上面的示例将导致错误,因为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

答案 6 :(得分:2)

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

需要

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

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

更多问题:

如果你做一个grep(-A1:+ 1行上下文)

grep -A1 "if " cldtest.sh 

你会发现一些嵌入式ifs,以及4个if / then块。

grep "fi " cldtest.sh 

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

我同意camh,从一开始就正确的缩进有助于避免这种错误。后来找到理想的方法意味着在这种意大利面条代码中加倍工作。

答案 7 :(得分:1)

你有一个未闭合的引号,大括号,括号,if,loop等等。

如果您只是通过查看(我建议使用语法着色编辑器和简洁的缩进样式)来看不到它,请复制一下脚本,并删除其中的一半,将其切割到应该是的位置有效。如果脚本尽可能运行,则问题出在另一半。重复,直到你缩小问题范围。

答案 8 :(得分:0)

有用的帖子,我发现我的错误是使用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

答案 9 :(得分:0)

尝试使用textpad执行在Windows操作系统中创建的脚本文件时遇到了同样的错误。这样可以选择正确的文件格式,如unix / mac等..或者在linux iteself中重新创建脚本。

答案 10 :(得分:0)

这也可能是由一条直线上的一对大括号引出而引起的。

此操作失败:

{ /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

答案 11 :(得分:0)

与OP的问题无关,但我的问题是我是noob shell脚本编写者。我使用的所有其他语言都需要括号来调用方法,而shell似乎不喜欢这种方法。

function do_something() {
  # do stuff here
}

# bad
do_something()

# works
do_something