Interface ShellOptions

Options for configuring the shell

interface ShellOptions {
    cwd?: string;
    env?: Record<string, string>;
    gid: number;
    kernel: Kernel;
    terminal?: Terminal;
    uid: number;
}

Properties

cwd?: string

Current working directory

env?: Record<string, string>

Environment variables

gid: number

Group ID

kernel: Kernel

Reference to kernel instance

terminal?: Terminal

Reference to terminal instance

uid: number

User ID