linux – 语法错误:文件结束意外(期待“然后”)

我正在为Minecraft服务器插件更新程序制作此代码
我是一个新的shell脚本编写器,所以我不知道很多…
当我运行此代码时,我收到一个错误:

#!/bin/sh
export PATH=$PATH:.
#Options
PLUGINDOWNLOADLINK=http://api.bukget.org/3/plugins/bukkit/$PLUGINNAME/latest/download
# Plugin folder
if [ -f $PWD\plugins ]; then
PLUG=$PWD\plugins 
else
PLUG=$PWD\plug-ins
fi

cd $PLUG

if [ ! -f .\update ]; then
mkdir update
echo Making Directory "update"..
fi

# Plugins Found
    for i in $( ls );
    do
        PLUGINNAME=$i
    done
    cd .\update

    wget $PLUGINDOWNLOADLINK

    # No Plugins Found
    if [ ! -f $PLUG ]; then
    echo
echo
echo    No plugin found.
echo
echo
echo
echo   Plugins can be downloaded here:
echo   http://dev.bukkit.org/bukkit-plugins
fi

# stop 
sleep 3s
exit

我收到此错误:

Syntax error: end of file unexpected (expecting "then")

所以我把“then”放在它想要我的地方并再次运行它:
它现在给了我这个错误:

Syntax error: end of file unexpected

我在Windows 7记事本上写了它
我怎样才能解决这个问题?

解决方法:

我遇到了同样的问题.问题是文件的格式是“dos”,但在linux shell中需要“unix”,所以我安装了“dos2unix”

$sudo apt-get install dos2unix

或者如果您使用emacs,您可以这样做:

C-x RET f unix

祝好运

上一篇:java-此代码块做什么?


下一篇:变量内容中的Python NameError