在官方文档中,AS_IF宏的描述非常相似:
Macro: AS_IF (test1, [run-if-true1], ..., [run-if-false])
如何使test1
包含多个条件? ("逻辑和"和"逻辑或"的组合")
谢谢
test1
只是一个 bash 命令。因此,它应该用作常规的bash代码。例如:
AS_IF ([test "x$a" == "xb" || test "x$a" == "xc"], [echo "test passed"], [echo "test has not passed"]