mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
document what glob style is used (#17080)
Took some digging to find that `with_fileglob` calls a method named `fileglob()`, which uses Python's `glob` library.
This commit is contained in:
parent
4c034fd002
commit
f4bd38a153
1 changed files with 2 additions and 2 deletions
|
@ -125,8 +125,8 @@ Assuming that ``first_example_file`` contained the text "hello" and ``second_exa
|
||||||
Looping over Fileglobs
|
Looping over Fileglobs
|
||||||
``````````````````````
|
``````````````````````
|
||||||
|
|
||||||
``with_fileglob`` matches all files in a single directory, non-recursively, that match a pattern. It can
|
``with_fileglob`` matches all files in a single directory, non-recursively, that match a pattern. It calls
|
||||||
be used like this::
|
`Python's glob library <https://docs.python.org/2/library/glob.html>`_, and can be used like this::
|
||||||
|
|
||||||
---
|
---
|
||||||
- hosts: all
|
- hosts: all
|
||||||
|
|
Loading…
Reference in a new issue