gpt4 book ai didi

linux - 如何在 Linux 上使用 while 检查 2 个条件

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:53:40 25 4
gpt4 key购买 nike

当我这样做时:

while [ $choice != 'X' ]
do

它可以工作,但是当我这样做的时候

while [ $choice != 'x' ] || [ $choice != 'X' ]
do

它们都不起作用。

有什么想法吗?

最佳答案

人工测试

 EXPRESSION1 -o EXPRESSION2
either EXPRESSION1 or EXPRESSION2 is true
 while [ $choice != 'x' -o $choice != 'X' ]

注意这个表达式永远为真,要不要and:-a?

如果您将 || 替换为 && ,它也会起作用..

关于linux - 如何在 Linux 上使用 while 检查 2 个条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10312822/

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