Merge branch '21766-disk-cache-size'
[arvados.git] / doc / _includes / _container_glob_patterns.liquid
1 {% comment %}
2 Copyright (C) The Arvados Authors. All rights reserved.
3
4 SPDX-License-Identifier: CC-BY-SA-3.0
5 {% endcomment %}
6
7 h2. Glob patterns
8
9 Each pattern in the @output_glob@ array can include the following special terms:
10
11 table(table table-bordered table-condensed).
12 |@*@|matches any sequence of non-@/@ characters|
13 |@?@|matches any single non-@/@ character|
14 |@[abcde]@ or @[a-e]@|matches any non-@/@ character in @abcde@|
15 |@[^abcde]@ or @[^a-e]@ or
16 @[!abcde]@ or @[!a-e]@|matches any non-@/@ character other than @abcde@|
17 |@/**/@|matches zero or more levels of subdirectories|
18 |@**/@|at the beginning of a pattern, matches zero or more directories|
19 |@/**@|at the end of a pattern, matches any file in any subdirectory|
20
21 Example patterns:
22
23 table(table table-bordered table-condensed).
24 |@*.txt@|matches files with extension @.txt@ at the top level|
25 |@foo/**@|matches the entire tree rooted at @foo@ in the top level|
26 |@**/fo[og]@|matches all files named @foo@ or @fog@ anywhere in the tree|
27 |@foo/**/*.txt@|matches all files with extension @.txt@ anywhere in the tree rooted at @foo@ in the top level|