Interface Shell

Interface for shell functionality

interface Shell {
    credentials: Credentials;
    cwd: string;
    env: Map<string, string>;
    envObject: Record<string, string>;
    id: string;
    username: string;
    attach(terminal: Terminal): void;
    clearPositionalParameters(): void;
    execute(line: string): Promise<number>;
    setPositionalParameters(args: string[]): void;
}

Properties

credentials: Credentials

Current user's credentials

cwd: string

Current working directory

env: Map<string, string>

Environment variables

envObject: Record<string, string>

Environment variables as object

id: string

Shell ID

username: string

Current username

Methods

  • Set positional parameters

    Parameters

    • args: string[]

      Arguments to set

    Returns void