Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #2304 from nickanderson/CFE-2606/3.12
CFE-2606/3.12: Fixed note about brace expansion in globbing for findfiles()
  • Loading branch information
nickanderson committed Mar 17, 2020
2 parents bb95e55 + fc06eeb commit 8717919
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion reference/functions/findfiles.markdown
Expand Up @@ -19,11 +19,13 @@ across directories. `*/*.cf` on the other hand will look two levels
deep.
* `?` matches a single letter
* `[a-z]` matches any letter from `a` to `z`
* `{x,y,anything}` will match `x` or `y` or `anything`.

This function, used together with the `bundlesmatching` function,
allows you to do dynamic inputs and a dynamic bundle call chain.

**Notes:**

- Brace expansion is not currently supported, `{x,y,anything}` will not match `x` or `y` or `anything`.

**Example:**

Expand Down

0 comments on commit 8717919

Please sign in to comment.