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

# Apagar sandboxes en ejecución

export const SandboxCliConfigHint = () => {
  if (typeof document === "undefined") {
    return null;
  } else {
    return <Note>Before running the command-line related example code in this document, please refer to the <Link href="/docs/es/guides/sandbox-cli">tutorial</Link> to install the CLI and complete <Link href="/docs/es/guides/sandbox-cli-auth">authentication</Link>.</Note>;
  }
};

Puedes usar el comando de la CLI para apagar sandboxes en ejecución.

<SandboxCliConfigHint />

## Apagar sandboxes por id

Para apagar sandboxes específicas, ejecuta el siguiente comando:

```bash Bash icon="terminal" theme={"system"}
novita-sandbox-cli sandbox kill <sandbox-id1> [<sandbox-id2>...]
```

## Apagar todas las sandboxes

Para apagar todas las sandboxes en ejecución, ejecuta el siguiente comando:

```bash Bash icon="terminal" theme={"system"}
novita-sandbox-cli sandbox kill --all
```
