devcontainer exec doesn't expose a way to set environment variables for the exec'd process. The library already supports it via `ExecOptions.Env`; we just need to wire a repeatable `--env` (`-e`) flag in `cmd/devcontainer/exec.go` and pass it through.
Shape:
```
devcontainer exec -e FOO=bar -e BAZ=qux -- ./script.sh
```
Parsing: split on the first `=`. Reject entries without `=`. Matches `docker exec` and upstream `@devcontainers/cli` semantics.
devcontainer execdoesn't expose a way to set environment variables for the exec'd process. The library already supports it via `ExecOptions.Env`; we just need to wire a repeatable `--env` (`-e`) flag in `cmd/devcontainer/exec.go` and pass it through.Shape:
```
devcontainer exec -e FOO=bar -e BAZ=qux -- ./script.sh
```
Parsing: split on the first `=`. Reject entries without `=`. Matches `docker exec` and upstream `@devcontainers/cli` semantics.