github.com/pachyderm/pachyderm@v1.13.4/doc/docs/1.9.x/reference/pachctl/pachctl_list_job.md (about) 1 ## pachctl list job 2 3 Return info about jobs. 4 5 ### Synopsis 6 7 Return info about jobs. 8 9 ``` 10 pachctl list job [flags] 11 ``` 12 13 ### Examples 14 15 ``` 16 17 # Return all jobs 18 $ pachctl list job 19 20 # Return all jobs from the most recent version of pipeline "foo" 21 $ pachctl list job -p foo 22 23 # Return all jobs from all versions of pipeline "foo" 24 $ pachctl list job -p foo --history all 25 26 # Return all jobs whose input commits include foo@XXX and bar@YYY 27 $ pachctl list job -i foo@XXX -i bar@YYY 28 29 # Return all jobs in pipeline foo and whose input commits include bar@YYY 30 $ pachctl list job -p foo -i bar@YYY 31 ``` 32 33 ### Options 34 35 ``` 36 --full-timestamps Return absolute timestamps (as opposed to the default, relative timestamps). 37 -h, --help help for job 38 --history string Return jobs from historical versions of pipelines. (default "none") 39 -i, --input strings List jobs with a specific set of input commits. format: <repo>@<branch-or-commit> 40 --no-pager Don't pipe output into a pager (i.e. less). 41 -o, --output string List jobs with a specific output commit. format: <repo>@<branch-or-commit> 42 -p, --pipeline string Limit to jobs made by pipeline. 43 --raw Disable pretty printing; serialize data structures to an encoding such as json or yaml 44 ``` 45 46 ### Options inherited from parent commands 47 48 ``` 49 --no-color Turn off colors. 50 -v, --verbose Output verbose logs 51 ``` 52