我一直在到处寻找解释。这是一个取自 apt-fast.sh 脚本的真实示例:

if [ ! -x /usr/bin/axel ]
then echo "axel is not installed, perform this?(y/n)"
    read ops
    case $ops in
     y) if apt-get install axel -y --force-yes
           then echo "axel installed"
        else echo "unable to install the axel. you are using sudo?" ; exit
        fi ;;
     n) echo "not possible usage apt-fast" ; exit ;;
    esac
fi
"fi ;;"if块中间有什么用?

最佳答案

fi 关闭 if 语句,而 ;; 关闭 case 语句中的当前条目。

关于Bash - "fi ;;"有什么用?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7010830/

10-14 09:45