有任何想法吗?
- shell: (cd /remote; find . -maxdepth 1 -type f) | cut -d'/' -f2 register: files_to_copy - fetch: src=/remote/{{ item }} dest=/local/ with_items: files_to_copy.stdout_lines
其中/ remote应使用远程服务器上的目录路径和/ local /上的目录路径进行更改