git ssb

0+

cel-desktop / ssb-pkg



Tree: 67c0e15a98a66eb99db2251478505d6f3d37535c

Files: 67c0e15a98a66eb99db2251478505d6f3d37535c / test / test-50-spawn / test-exec-3.js

521 bytesRaw
1#!/usr/bin/env node
2
3'use strict';
4
5var exec = require('child_process').exec;
6
7var child = exec(
8 JSON.stringify(process.execPath) + ' ' + [
9 require.resolve('./test-exec-child.js'), 'argvx', '--argvy'
10 ].join(' '),
11 function (error) {
12 if (error) return console.error(error);
13 console.log('exec done');
14 }
15);
16
17child.stdout.pipe(process.stdout);
18child.stderr.pipe(process.stderr);
19
20child.on('exit', function (code) {
21 setTimeout(function () {
22 console.log('Child exited with code', code);
23 }, 100);
24});
25

Built with git-ssb-web