使用ansible将文件从所有目录移动到父目录
Move files from all directories to parent directory using ansible
我有以下文件结构:
- Parent
- folder1
- file1
- folder2
- file2
- folder3
- file3
我想将文件 1、文件 2、文件 3 移动到父目录。
问题是找出父目录中的所有目录 directory.I 我正在尝试实现如下内容:
- name: Moving file.
command: mv /parent/{{item}}/* /parent
with_items: "folders in parent"
任何方法都适合我。我没有任何线索。
您可以使用 with_fileglob.
- name: Moving file.
command: mv {{ item }} /parent/
with_fileglob:
- /parent/*/*
我有以下文件结构:
- Parent
- folder1
- file1
- folder2
- file2
- folder3
- file3
我想将文件 1、文件 2、文件 3 移动到父目录。 问题是找出父目录中的所有目录 directory.I 我正在尝试实现如下内容:
- name: Moving file.
command: mv /parent/{{item}}/* /parent
with_items: "folders in parent"
任何方法都适合我。我没有任何线索。
您可以使用 with_fileglob.
- name: Moving file.
command: mv {{ item }} /parent/
with_fileglob:
- /parent/*/*