Created
January 21, 2020 09:21
-
-
Save Finkregh/c7aafa925f28c531cf1b3eebfdcd474f to your computer and use it in GitHub Desktop.
ansible: get files from directory - only names without path
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- name: "get files from dir" | |
find: | |
paths: "/some/dir/foo" | |
register: found_files | |
- name: print file names without path | |
debug: | |
msg: "{{ found_files['files'] | map(attribute='path') | map('regex_replace','^.*/(.*)$','\\1') | list }}" |
perfect ๐
cool
Perfect thanks
"{{ daemon_binaries['files'] | map(attribute='path') | map('regex_replace', '^.*/(.*)$', '\\1') | list }}"
Just to make ansible-lint happy
Using a basename filter is more appropriate.
msg: "{{ found_files['files'] | map(attribute='path') | map('basename') | list }}"
Other options:
1.
- name: "get files from dir"
find:
paths: "{{ find_path }}"
vars:
find_path: '/some/path'
register: found_files
- name: print file names without path
debug:
msg: "{{ found_files['files'] | map(attribute='path') | map('relpath', find_path) | list }}"
vars:
find_path: '/some/path'
- name: "get files from dir"
shell:
cmd: |
find . -type f | sed -e 's,^\./,,'
chdir: "{{ find_path }}"
vars:
find_path: '/some/path'
register: found_files
- name: print file names without path
debug:
msg: "{{ found_files['stdout_lines'] }}"
vars:
find_path: '/some/path'
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank You!๐