1
0
Fork 0
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:
Ted Timmons 2016-08-15 06:38:27 -07:00 committed by Brian Coca
parent 4c034fd002
commit f4bd38a153

View file

@ -125,8 +125,8 @@ Assuming that ``first_example_file`` contained the text "hello" and ``second_exa
Looping over Fileglobs
``````````````````````
``with_fileglob`` matches all files in a single directory, non-recursively, that match a pattern. It can
be used like this::
``with_fileglob`` matches all files in a single directory, non-recursively, that match a pattern. It calls
`Python's glob library <https://docs.python.org/2/library/glob.html>`_, and can be used like this::
---
- hosts: all