All pastes #2068673 Raw Edit

Mine

public text v1 · immutable
#2068673 ·published 2011-05-24 22:14 UTC
rendered paste body
// my command R < /Users/Adva/Desktop/repository/esm/dev/workspace/it.unibz.esm/resources/r/r.in.txt --no-save > /Users/Adva/Desktop/repository/esm/dev/workspace/it.unibz.esm/resources/r/r.out.txt

//the code

	
		String[] cmd = {"/bin/sh", "-c", "myCmd"};
		try {
			Runtime.getRuntime().exec(cmd);
		} catch (IOException e) {
			e.printStackTrace();
		}