gpt4 book ai didi

Bash - "fi ;;"有什么用?

转载 作者:行者123 更新时间:2023-11-29 08:41:17 28 4
gpt4 key购买 nike

我一直在到处寻找解释。这是取自 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

if block 中间的 "fi ;;" 有什么用?

最佳答案

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

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

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com