Files: c5c7a8ffadbd51aa28a5f3f096fe43f69405da44 / test / test-50-spawn / test-execFile.js
508 bytesRaw
1 | |
2 | |
3 | 'use strict'; |
4 | |
5 | var execFile = require('child_process').execFile; |
6 | |
7 | var child = execFile( |
8 | process.execPath, [ |
9 | require.resolve('./test-execFile-child.js'), 'argvx', '--argvy' |
10 | ], |
11 | function (error) { |
12 | if (error) return console.error(error); |
13 | console.log('execFile done'); |
14 | } |
15 | ); |
16 | |
17 | child.stdout.pipe(process.stdout); |
18 | child.stderr.pipe(process.stderr); |
19 | |
20 | child.on('exit', function (code) { |
21 | setTimeout(function () { |
22 | console.log('Child exited with code', code); |
23 | }, 100); |
24 | }); |
25 |
Built with git-ssb-web