child.stdout.on('data', function(data) {
    out += data;
    if (opts.stdout && opts.stdout.writable)
      opts.stdout.write(data);
  });