SamplesV1/CustomizedJavaOnHDInsight/HDInsight-ADF/src/com/adf/jobonhdi/JobOnHdiLauncher.java [83:92]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    	List<String> commands = new ArrayList<String>();
    	if (isWindowsOs)
    	{
    		commands.add("cmd");
        	commands.add("/c");
    	}
    	else
    	{
        	commands.add("/bin/sh");
            commands.add("-c");       		
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



SamplesV1/CustomizedJavaOnHDInsight/HDInsight-ADF/src/com/adf/jobonhdi/JobOnHdiLauncher.java [305:314]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        List<String> commands = new ArrayList<String>();
    	if (isWindowsOs)
    	{
    		commands.add("cmd");
        	commands.add("/c");
    	}
    	else
    	{
        	commands.add("/bin/sh");
            commands.add("-c");       		
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



