* Execute a bash command with streaming I/O * @param command The bash script to execute * @param options Execution options (cwd, env, timeout, etc.) * @returns Promise that resolves to streaming handles for stdin/stdout/stderr and completion promises * @throws RuntimeError if execution f
(command: string, options: ExecOptions)
| 368 | * @throws RuntimeError if execution fails in an unrecoverable way |
| 369 | */ |
| 370 | exec(command: string, options: ExecOptions): Promise<ExecStream>; |
| 371 | |
| 372 | /** |
| 373 | * Read file contents as a stream |
no outgoing calls