# atmos config list

List the physical Atmos config files that contributed settings and the dot-notation
setting paths defined in each file. Optionally filter paths with a glob pattern.

## Usage

```shell
atmos config list [path-pattern] [--format <format>] [--delimiter <delimiter>]
```

## Examples

```shell
# List every editable path.
atmos config list

# Filter by a glob pattern.
atmos config list 'toolchain.*'

# Machine-readable output.
atmos config list --format json
```

## Arguments

- **`[path-pattern]` (optional)**
  A glob pattern to filter the listed paths (e.g. 
  `toolchain.*`
  ).

## Flags

- **`--format` / `-f` (string, default `paths`)**
  Output format: 
  `paths`
  , 
  `table`
  , 
  `json`
  , 
  `yaml`
  , 
  `csv`
  , or 
  `tsv`
  .
- **`--delimiter` (string)**
  Delimiter to use for 
  `csv`
  /
  `tsv`
   output.
