All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.laskowski.shell.DefaultLinuxShellArguments Maven / Gradle / Ivy

Go to download

Library to launch .bat and .sh scripts of your choice with different configurations. Allows you to read tasks and services output from terminal

The newest version!
package io.github.laskowski.shell;

public class DefaultLinuxShellArguments implements ShellArguments {

    @Override
    public String getExecutor() {
        return "bash";
    }

    @Override
    public String getExtension() {
        return ".sh";
    }

    @Override
    public String getExecutionArguments() {
        return "-c";
    }

    @Override
    public String getVariableCommand() {
        return "export";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy