yaml yml 换行 多行 语法
参考yaml官网yaml 文件中多行字符串可以使用 | 保留换行符,使用 > 将换行符替换为空格多行字符串可以使用引号括起来:" " 会进行特殊字符转义,' ' 保留原始字符串。| 示例# vim test.yml---- name: test hosts: 127.0.0.1 gather_facts: no tasks: - name: echo test # 换行符保留,输出三个 Line shell: | ech