0

我已经使用了下面的脚本来提供一个选项菜单,但它提供了一个

syntax error: 'select' unmatched 

这是我无法使用 elif 命令的脚本部分,因为 android 无法识别它。

OPTIONS="Continue Quit"
       select opt in $OPTIONS; do
if [ "$opt" = "Quit" ]; then
            echo closing Android Hardening
sleep 5
            exit
fi

if [ "$opt" = "Continue" ]; then

echo       ANDROID
echo      HARDENING

else 
    echo incorrect selection restart application
sleep 7 

exit 1

fi
4

1 回答 1

0

您必须关闭 select ... 使用匹配的 od

于 2013-01-21T14:23:24.753 回答