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

guru.bitman.fictionalvieira.bash.GenericBashCommand Maven / Gradle / Ivy

Go to download

The idea behind Fictional Vieira is to combine Bash and Java strengths to ease glue logic maintenance usually created using a mix of Bash and CLI programs

The newest version!
package guru.bitman.fictionalvieira.bash;

public class GenericBashCommand
	implements BashCommand {

	private final String cmdPlusArgs;

	public GenericBashCommand(String cmdPlusArgs) {
		this.cmdPlusArgs = cmdPlusArgs;
	}

	@Override
	public String getCode() {
		return cmdPlusArgs;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy