Lines Matching full:exec
25 let Exec; variable
86 @name jake.exec
113 jake.exec(cmds, {stdout: true}, callback);
115 this.exec = function (a, b, c) { method
121 let ex = new Exec(cmds, opts, callback);
134 return new Exec(a, b, c);
176 Exec = function () { class
187 util.inherits(Exec, EventEmitter);
189 Object.assign(Exec.prototype, new (function () {
216 // Ganking part of Node's child_process.exec to get cmdline args parsed
292 utils.Exec = Exec;