Execute shell command
(
self,
command: str,
cwd: str | None = None,
env: dict[str, str] | None = None,
timeout: int | None = 300,
shell: bool = True,
background: bool = False,
)
| 9 | """Shell operations component""" |
| 10 | |
| 11 | async def exec( |
| 12 | self, |
| 13 | command: str, |
| 14 | cwd: str | None = None, |
| 15 | env: dict[str, str] | None = None, |
| 16 | timeout: int | None = 300, |
| 17 | shell: bool = True, |
| 18 | background: bool = False, |
| 19 | ) -> dict[str, Any]: |
| 20 | """Execute shell command""" |
| 21 | ... |
no outgoing calls
no test coverage detected