Interface RemoteScriptStrategy

interface RemoteScriptStrategy {
    downloadFile(url, output): string;
    exec(): string;
    home(): string;
    joinPath(...segments): string;
    joinScript(...segments): string;
    mkdir(path): string;
    unzip(file, directory): string;
}

Implemented by

Methods