Here you can find the source of unixCommands(final String prefix)
public static String[] unixCommands(final String prefix)
//package com.java2s; //License from project: Open Source License public class Main { public static String[] unixCommands(final String prefix) { return new String[] { "/bin/bash", prefix + "-script.sh" }; }//w w w .j a v a 2 s . co m }