📜  Ansible 在条件下使用标准输出 - 无论代码示例

📅  最后修改于: 2022-03-11 15:00:11.338000             🧑  作者: Mango

代码示例1
- shell: cat "hello"
      register: cat_contents

    - shell: echo "I cat hello"
      when: cat_contents.stdout == "hello"