summaryrefslogtreecommitdiff
path: root/README.markdown
diff options
context:
space:
mode:
authorSascha Spreitzer <sspreitz@redhat.com>2017-02-04 13:30:59 +0100
committerSascha Spreitzer <sspreitz@redhat.com>2017-02-05 12:21:38 +0100
commit6092ede8d86746038df4a367191d232003652c55 (patch)
treeceec2b7519bb26fe02e323ce885ac26d82fbf321 /README.markdown
parentdb8c1fbb2394d93fe3156b17c840455f1b3e2c76 (diff)
Add glob function
Diffstat (limited to 'README.markdown')
-rw-r--r--README.markdown11
1 files changed, 11 insertions, 0 deletions
diff --git a/README.markdown b/README.markdown
index a4c30b5..457ab6a 100644
--- a/README.markdown
+++ b/README.markdown
@@ -635,6 +635,17 @@ This is useful if the namespace itself is stored in a string:
*Type*: rvalue.
+#### `glob`
+
+Dir#glob wrapper that accepts a string or an array of strings of path patterns.
+Returns an array of strings of matched paths.
+
+ ~~~
+ $confs = glob(['/etc/**/*.conf', '/opt/**/*.conf'])
+ ~~~
+
+*Type*: rvalue.
+
#### `grep`
Searches through an array and returns any elements that match the provided regular expression. For example, `grep(['aaa','bbb','ccc','aaaddd'], 'aaa')` returns ['aaa','aaaddd']. *Type*: rvalue.