如何将逻辑或自动确认 m4 AS_IF

  • 本文关键字:m4 确认 AS IF autoconf m4
  • 更新时间 :
  • 英文 :


在官方文档中,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"]

相关内容

  • 没有找到相关文章

最新更新