当我尝试运行脚本时出现以下错误
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