25

我想使用 bash 做什么:

> if true; then echo y; else echo n; fi
y
> if false; then echo y; else echo n; fi
n
> if false || true; then echo y; else echo n; fi
y

现在尝试鱼:

> if true; echo y; else; echo n; end
y
> if false; echo y; else; echo n; end
n

# Here 'or true' are just two arguments for false
> if false or true; echo y; else; echo n; end 
n

# Here 'or true;' is a command inside the if
> if false; or true; echo y; else; echo n; end 
n

# Can't use command substitution instead of a command
> if (false; or true); echo y; else; echo n; end
fish: Illegal command name “(false; or true)”

我怎样才能有两个条件if

4

3 回答 3

28

另外两种方法:

方法一:

if begin false; or true; end
  echo y
else
  echo n
end

方法二:

false; or true
and echo y
or echo n
于 2013-07-27T20:07:47.420 回答
2

这种方式有效,但它是一个丑陋的黑客:

> if test (true; and echo y); echo y; else; echo n; end 
y
> if test (false; and echo y); echo y; else; echo n; end 
n
> if test (false; or true; and echo y); echo y; else; echo n; end 
y

我真诚地希望得到更好的答案。

于 2013-07-27T16:37:01.873 回答
0

从 fish 2.3b1开始,可以直接在if条件中使用and/链接命令orbegin ... end不再需要了。官方文档于 2016 年 5 月更新

所以现在这可以按预期工作:

> if false; or true; echo y; else; echo n; end
y
于 2020-09-05T05:50:16.417 回答