List a job's steps with their output

## Usage

`circleci job output list <job-id> [flags]`

## Arguments

`<job-id>` is the UUID of the job whose steps and output to list. Job
UUIDs are shown in the output of `circleci workflow get` and
`circleci job get`.

## Flags

| Flag              | Description                                                                                     |
| ----------------- | ----------------------------------------------------------------------------------------------- |
| `--execution int` | Parallel execution index to list output from                                                    |
| `--jq string`     | Process values from the response using jq syntax (see `circleci help formatting`)               |
| `--json`          | Output as JSON                                                                                  |
| `--tail int`      | Show only the last N lines of each step's output in the rendered view (0 for all) (default 200) |

Global flags: `-c, --config`, `--debug`, `--no-color`, `-q, --quiet` — see `circleci --help`.

## Examples

- List the steps and output of a job: 
  `circleci job output list 8e50c384-0083-43d0-bc8f-93f0db589d6b`
- List output for the second parallel execution: 
  `circleci job output list 8e50c384-0083-43d0-bc8f-93f0db589d6b --execution 1`
- As JSON, with the output of the failing step: 
  `circleci job output list 8e50c384-0083-43d0-bc8f-93f0db589d6b --json | jq '.steps[] | select(.exit_code != 0) | .output'`
- Show every line of every step in the rendered view: 
  `circleci job output list 8e50c384-0083-43d0-bc8f-93f0db589d6b --tail 0`

## Details

List every step in a job alongside its terminal-processed output.

Each step's output is replayed through a virtual terminal, so progress
redraws collapse to the final state a human would have seen. --tail limits
the rendered view only; --json always carries each step's full output.

JSON fields: id, name, execution, steps[].num/name/type/phase/outcome/started_at/stopped_at/exit_code/command/output

