Interface ShellSpecificOptions

interface ShellSpecificOptions {
    execArgs: string[];
    quotingFunctions?: ShellQuotingFunctions;
}

Properties

execArgs: string[]

Arguments passed to the shell, aka command here.

quotingFunctions?: ShellQuotingFunctions

Pack of functions used to escape the subCommand and subArgs to run in the shell.