Skip to content

Commit

Permalink
Merge pull request #2305 from nickanderson/CFE-2606/3.10
Browse files Browse the repository at this point in the history
CFE-2606/3.10: Fixed note about brace expansion in globbing for findfiles()
  • Loading branch information
nickanderson committed Mar 17, 2020
2 parents 4e302fc + 2e72f3c commit ae7435d
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 ae7435d

Please sign in to comment.