3

当我尝试运行脚本时出现以下错误

Bash : "done" unexpected (expecting "fi")

我尝试了 bash 和 dash ,我得到了同样的错误。

topip4="false"
topip6="false"
topurl="false"
for par in "$@" ; do
    if [ "$par" == "-topip4" ] ; then
        topip4="true"
    else if [ "$par" == "-topip6" ] ; then
        topip6="true"
    else if [ "$par" == "-topurl" ] ; then
        topurl="true"
    fi
done
4

1 回答 1

4

将您的更改else ifelif.

于 2013-06-15T11:02:57.353 回答