Bash - “fi ;”有什么用?

发布于 2024-11-29 00:19:04 字数 478 浏览 1 评论 0原文

我一直在到处寻找解释。下面是一个取自 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 块中间的 "fi ;;" 有什么用?

I have been searching everywhere for an explanation. Here's a real example taken from the apt-fast.sh script:

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

What's the use of "fi ;;" in the middle of the if block?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

水水月牙 2024-12-06 00:19:04

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

fi closes the if statement, while ;; closes the current entry in the case statement.

音盲 2024-12-06 00:19:04

fi 用于关闭 y) case 语句中的 if 块,;; 用于结束 y)案例。

The fi is to close the if-block in the y) case statement and the ;; is used to end the y) case.

遗忘曾经 2024-12-06 00:19:04

fi 终止前面的 if,而 ;; 终止 case.. 中的 y) 情况。 .esac

fi terminates the preceding if, while ;; terminates the y) case in the case...esac.

幻梦 2024-12-06 00:19:04

fi 关闭打开 3 行的 if 语句。 ;; 关闭由 y) 打开的案例。

fi closes the if statement opened 3 lines up. ;; closes the case opened by y).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文