> ## Documentation Index
> Fetch the complete documentation index at: https://ccmd.simse.io/llms.txt
> Use this file to discover all available pages before exploring further.

# run

> The `run` command is the star of the show

<Warning>This page is still under construction and may be out of date</Warning>

## Usage

```bash theme={null}
ccmd run [OPTIONS]
```

## Arguments

<ParamField path="--input" type="[]string" required="true">
  One or more patterns to match when searching for input files in the working directory.

  <Tip>Always wrap your glob patterns in quotes (e.g. `"src/**/*.ts"`) to prevent your shell from expanding them prematurely.</Tip>

  <Expandable title="examples">
    **Single pattern**

    ```bash theme={null}
    ccmd run --input "packages/**/generated/*.ts" --command "yarn codegen"
    ```

    **Multiple patterns**

    ```bash theme={null}
    ccmd run --input "packages/**/generated/*.ts" "apps/**/generated/*.ts" --command "yarn codegen"
    ```
  </Expandable>
</ParamField>

<ParamField path="--cwd" type="string">
  Working directory to use. Defaults to your current directory if not provided.
</ParamField>
