Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/utils/platforms/rhino/lib/process.js
blob: 1545032f2c326170e998fe90a7b8d712284a195b (plain)
1
2
3
4
5
var Process = exports.Process = {};

Process.exec = function(cmd) {
    return java.lang.Runtime.getRuntime().exec(cmd);
}