guru.bitman.fictionalvieira.bash.GenericBashCommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
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;
}
}