Validate and print expanded orb YAML

## Usage

`circleci orb process <path> [flags]`

## Arguments

- `<path>` is the path to an orb YAML file. Pass `-` to read from stdin.

## Flags

| Flag           | Description                                                            |
| -------------- | ---------------------------------------------------------------------- |
| `--org string` | Organization slug (e.g. gh/myorg) or UUID for private orb dependencies |

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

## Examples

- Process an orb file and print expanded YAML: 
  `circleci orb process orb.yml`
- Process from stdin: 
  `cat orb.yml | circleci orb process -`
- Process with a specific org for private deps: 
  `circleci orb process orb.yml --org gh/acme`

## Details

Validate an orb YAML file and print the expanded (processed) YAML.

The processed output resolves all orb references and expands inline
configurations. Useful to verify what CircleCI will see when the orb
is published.

Pass '-' as the path to read from stdin.

