为何我的脚本无法运行?

为何我的脚本无法运行?

嗯,我的脚本不起作用,我不知道为什么,它给了我错误

"update1.run: line 187: syntax error: unexpected end of file"

这是我的代码

http://pastebin.com/4W4AwuY5

我将非常感激您提供的任何帮助,谢谢!

答案1

fi你在第 18 行缺少

read -p "If you are sure then type DUCKS in all caps. If not type that isn't DUCKS."
if [ "$REPLY" != "DUCKS" ]; then
        echo "QUACK..."
        exit 1
fi
gconftool-2 --set /apps/gnome-terminal/profiles/Default/title --type=string "Removing ads"

引用$REPLY也有帮助。

相关内容