A script file representing a set of commands (which are just Strings) to be run through a command shell in Windows cygwin.
String
33343536373839404142
/** * Override buildPgeRunScript method to call a windows specific script file */ @Override protected ScriptFile buildPgeRunScript() { CygwinScriptFile sf = new CygwinScriptFile(this.pgeConfig.getShellType()); sf.setCommands(this.pgeConfig.getExeCmds()); return sf; }