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

com.blitline.image.functions.BashScript Maven / Gradle / Ivy

There is a newer version: 0.17.1
Show newest version
package com.blitline.image.functions;

/**
 * Execute an arbitrary Bash script inside the Blitline job container.
 * 
 * @author Christopher Smith
 *
 */
public class BashScript extends AbstractScriptFunction {
	
	/**
	 * @param script the Bash script to be run, as if using {@code bash -c}
	 */
	public BashScript(String script) {
		params.put("bash_string", script);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy