github.com/pachyderm/pachyderm@v1.13.4/doc/docs/1.9.x/reference/pachctl/pachctl_glob_file.md (about) 1 ## pachctl glob file 2 3 Return files that match a glob pattern in a commit. 4 5 ### Synopsis 6 7 Return files that match a glob pattern in a commit (that is, match a glob pattern in a repo at the state represented by a commit). Glob patterns are documented [here](https://golang.org/pkg/path/filepath/#Match). 8 9 ``` 10 pachctl glob file <repo>@<branch-or-commit>:<pattern> [flags] 11 ``` 12 13 ### Examples 14 15 ``` 16 17 # Return files in repo "foo" on branch "master" that start 18 # with the character "A". Note how the double quotation marks around the 19 # parameter are necessary because otherwise your shell might interpret the "*". 20 $ pachctl glob file "foo@master:A*" 21 22 # Return files in repo "foo" on branch "master" under directory "data". 23 $ pachctl glob file "foo@master:data/*" 24 ``` 25 26 ### Options 27 28 ``` 29 --full-timestamps Return absolute timestamps (as opposed to the default, relative timestamps). 30 -h, --help help for file 31 --raw disable pretty printing, print raw json 32 ``` 33 34 ### Options inherited from parent commands 35 36 ``` 37 --no-color Turn off colors. 38 -v, --verbose Output verbose logs 39 ``` 40