Documentation

    PLEASE NOTE: This document applies to an unreleased version of rash. It is strongly recommended that you only use official releases of rash, as unreleased versions are subject to changes and incompatibilities that will not be supported in the official releases.

    If you are using an official release version of Rash, you should refer to the documentation for your specific version.

    Documentation for other releases can be found by using the version selector in the bottom left of any doc page.

    find

    Use find module as a lookup. Returns the extra field of the module result.

    Example

    - debug:
        msg: "{{ find(paths='/') }}"
    
    - name: Copy all files in /tmp to /tmp2
      vars:
        tmp_query:
          paths: "/tmp"
          hidden: true
          recurse: false
      loop: "{{ find(tmp_query) }}"
      copy:
        src: "{{ item }}""
        dest: "/tmp2/{{ item | basename }}"