node-lxc
    Preparing search index...

    Interface ExecOutputResult

    Result returned by Container.execOutput.

    interface ExecOutputResult {
        exitCode: number;
        stderr: string;
        stdout: string;
    }
    Index

    Properties

    exitCode: number

    Process exit code, or -1 if the process was killed by a signal.

    stderr: string

    All data written to stderr, as a UTF-8 string.

    stdout: string

    All data written to stdout, as a UTF-8 string.