-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchild_process_custom.js
55 lines (45 loc) · 1.19 KB
/
child_process_custom.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
const { exec: _exec, execSync: _execSync } = require('child_process');
function execHandler(command, error, stdout, stderr) {
console.log(`Done command: ${command}`);
if (error) {
console.error(`Exec error: ${error}`);
return;
}
if (stdout) {
console.log(`Stdout: ${stdout}`);
}
if (stderr) {
console.error(`Stderr: ${stderr}`);
}
}
function exec(commands, callback) {
(typeof commands == 'string' ? [commands] : commands)
.forEach((command) => {
// console.log(`Exec command: ${command}`);
_exec(command, (...args) => (callback || execHandler)(command, ...args));
});
}
function execSync(commands, callback) {
(typeof commands == 'string' ? [commands] : commands)
.forEach((command) => {
console.log(`Exec command: ${command}`);
try {
const stdout = _execSync(command).toString();
if (callback) {
callback(command, stdout);
} else {
console.log(`Stdout: ${stdout}`);
}
} catch (error) {
if (callback) {
callback(command, null, error);
} else {
console.error(`${error}\n`);
}
}
});
}
module.exports = {
exec,
execSync,
};