我正在为我的世界服务器插件更新程序制作此代码我是一个新的 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 notepad++ 上写的,
我该如何解决这个问题?