MCPcopy Index your code
hub / github.com/processing/processing / ffs

Method ffs

app/src/processing/app/exec/ProcessHelper.java:120–134  ·  view source on GitHub ↗
(final String... cmd)

Source from the content-addressed store, hash-verified

118
119
120 static public boolean ffs(final String... cmd) {
121 try {
122 ProcessHelper helper = new ProcessHelper(cmd);
123 ProcessResult result = helper.execute();
124 if (result.succeeded()) {
125 return true;
126 }
127 System.out.println(result.getStdout());
128 System.err.println(result.getStderr());
129
130 } catch (Exception e) {
131 e.printStackTrace();
132 }
133 return false;
134 }
135}

Callers 1

exportApplicationMethod · 0.95

Calls 6

executeMethod · 0.95
succeededMethod · 0.95
getStdoutMethod · 0.95
getStderrMethod · 0.95
printlnMethod · 0.45
printStackTraceMethod · 0.45

Tested by

no test coverage detected