result of exec

interface ExecResult {
    exitCode: number;
    stderr: string;
    stdout: string;
}

Properties

exitCode: number

exit code of the command

stderr: string

stderr of the command

stdout: string

stdout of the command