```sh
handle = glob_array pattern
```
Returns an array handle containing all path entries found from the provided glob pattern.<br>
The pattern can be a relative path from current directory or an absolute path.
The glob pattern.
The array handle.
```sh
handle = glob_array ./somedir/**/*.txt
for path in ${handle}
end
```