Lines Matching +full:- +full:- +full:stderr
9 * http://www.apache.org/licenses/LICENSE-2.0
63 // Backward-compat shim
68 if (typeof opts.stderr != 'undefined') {
69 opts.printStderr = opts.stderr;
70 delete opts.stderr;
89 @description Executes shell-commands asynchronously with an optional
92 @param {String[]} cmds The list of shell-commands to execute
95 @param {Boolean} [opts.printStderr=false] Print stderr from each command
106 , 'ls -al | grep ^d'
137 // From Math.uuid.js, https://github.com/broofa/node-uuid
149 i = -1;
157 uuid[8] = uuid[13] = uuid[18] = uuid[23] = '-';
162 i = -1;
205 self.emit('stderr', data);
206 // Accumulate the error-data so we can use it as the
226 args = ['-c', next];
244 shStdio.push(process.stderr);
255 sh.stderr.addListener('data', handleStderrData);