Skip to content

Commit

Permalink
Fix wrong default glob folder depth number (Velocidex#804)
Browse files Browse the repository at this point in the history
  • Loading branch information
cybiosity-syn authored Feb 28, 2024
1 parent 4962cc6 commit 21970e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/vql_reference/plugin/glob/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Glob expressions are case insensitive and may contain the following wild cards:
* The `*` matches one or more characters.
* The `?` matches a single character.
* Alternatives are denoted by braces and comma delimited: `{a,b}`
* Recursive search is denoted by a `**`. By default this searches 3 directories deep. If you need to increase it you can add a depth number (e.g. `**10`)
* Recursive search is denoted by a `**`. By default this searches 30 directories deep. If you need to increase it you can add a depth number (e.g. `**50`)

By default globs do not expand environment variables. If you need to
expand environment variables use the `expand()` function explicitly:
Expand Down

0 comments on commit 21970e9

Please sign in to comment.