Print the YAML source of an orb version

## Usage

`circleci orb source <namespace>/<orb>[@<version>] [flags]`

## Arguments

- `<namespace>/<orb>[@<version>]` is the orb to print, for example, `namespace/orb-name`.
  Optionally append `@<version>` (for example, `@1.2.3`, `@volatile`, or `@dev:my-branch`).
  When omitted, the latest published version is shown.

## Flags

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

## Examples

- Print source of the latest version: 
  `circleci orb source myorg/my-orb`
- Print source of a specific version: 
  `circleci orb source myorg/my-orb@1.2.3`
- Print source of a dev version: 
  `circleci orb source myorg/my-orb@dev:my-branch`
- Save the source to a file: 
  `circleci orb source myorg/my-orb@1.0.0 > orb.yml`

## Details

Print the raw YAML source of an orb version.

If no version is specified, the latest published version is shown.
Specify a version with `@<version>` (e.g. @1.2.3 or @volatile for latest).

