使用 child_process.execSync 但在控制台中保留输出
Use child_process.execSync but keep output in console
我想使用在 NodeJS 0.12 中添加的 execSync
方法,但在控制台 window 中仍然有输出,我从中 运行 Node 脚本。
例如如果我 运行 一个具有以下行的 NodeJS 脚本,我想在控制台中查看 rsync 命令 "live" 的完整输出:
require('child_process').execSync('rsync -avAXz --info=progress2 "/src" "/dest"');
我知道 execSync
returns 命令的输出,我可以在执行后将其打印到控制台,但这样我就没有 "live" 输出.. .
除非您按照已接受答案的建议重定向 stdout 和 stderr,否则使用 execSync 或 spawnSync 是不可能的。在不重定向 stdout 和 stderr 的情况下,这些命令仅在命令完成时 return stdout 和 stderr。
要在不重定向 stdout 和 stderr 的情况下执行此操作,您将需要使用 spawn 来执行此操作,但它非常简单:
var spawn = require('child_process').spawn;
//kick off process of listing files
var child = spawn('ls', ['-l', '/']);
//spit stdout to screen
child.stdout.on('data', function (data) { process.stdout.write(data.toString()); });
//spit stderr to screen
child.stderr.on('data', function (data) { process.stdout.write(data.toString()); });
child.on('close', function (code) {
console.log("Finished with code " + code);
});
我使用了一个递归列出文件的 ls 命令,以便您可以快速测试它。 Spawn 将您要尝试的可执行文件名称作为第一个参数 运行,作为第二个参数,它使用一个字符串数组来表示您要传递给该可执行文件的每个参数。
但是,如果您设置为使用 execSync 并且由于某种原因无法重定向 stdout 或 stderr,您可以打开另一个终端(如 xterm)并向其传递如下命令:
var execSync = require('child_process').execSync;
execSync("xterm -title RecursiveFileListing -e ls -latkR /");
这将允许您在新终端中查看您的命令正在做什么,但仍然有同步调用。
你可以通过 parent´s stdio to the child process 如果这是你想要的:
require('child_process').execSync(
'rsync -avAXz --info=progress2 "/src" "/dest"',
{stdio: 'inherit'}
);
您可以简单地使用 .toString()
。
var result = require('child_process').execSync('rsync -avAXz --info=progress2 "/src" "/dest"').toString();
console.log(result);
这已经在 Node v8.5.0
上测试过,我不确定以前的版本。根据 @etov,它不适用于 v6.3.1
- 我不确定中间值。
编辑:回想起来,我意识到它实际上并没有回答具体问题,因为它没有向您显示输出 'live' — 只有一次命令已完成 运行.
但是,我把这个答案留在这里,因为我知道很多人遇到这个问题只是为了寻找如何在执行后打印命令的结果。
简单:
try {
const cmd = 'git rev-parse --is-inside-work-tree';
execSync(cmd).toString();
} catch (error) {
console.log(`Status Code: ${error.status} with '${error.message}'`;
}
参考:
// nodejs
var execSync = require('child_process').execSync;
// typescript
const { execSync } = require("child_process");
try {
const cmd = 'git rev-parse --is-inside-work-tree';
execSync(cmd).toString();
} catch (error) {
error.status; // 0 : successful exit, but here in exception it has to be greater than 0
error.message; // Holds the message you typically want.
error.stderr; // Holds the stderr output. Use `.toString()`.
error.stdout; // Holds the stdout output. Use `.toString()`.
}
命令运行成功时:
在选项中添加{"encoding": "utf8"}
。
execSync(`pwd`, {
encoding: "utf8"
})
我想使用在 NodeJS 0.12 中添加的 execSync
方法,但在控制台 window 中仍然有输出,我从中 运行 Node 脚本。
例如如果我 运行 一个具有以下行的 NodeJS 脚本,我想在控制台中查看 rsync 命令 "live" 的完整输出:
require('child_process').execSync('rsync -avAXz --info=progress2 "/src" "/dest"');
我知道 execSync
returns 命令的输出,我可以在执行后将其打印到控制台,但这样我就没有 "live" 输出.. .
除非您按照已接受答案的建议重定向 stdout 和 stderr,否则使用 execSync 或 spawnSync 是不可能的。在不重定向 stdout 和 stderr 的情况下,这些命令仅在命令完成时 return stdout 和 stderr。
要在不重定向 stdout 和 stderr 的情况下执行此操作,您将需要使用 spawn 来执行此操作,但它非常简单:
var spawn = require('child_process').spawn;
//kick off process of listing files
var child = spawn('ls', ['-l', '/']);
//spit stdout to screen
child.stdout.on('data', function (data) { process.stdout.write(data.toString()); });
//spit stderr to screen
child.stderr.on('data', function (data) { process.stdout.write(data.toString()); });
child.on('close', function (code) {
console.log("Finished with code " + code);
});
我使用了一个递归列出文件的 ls 命令,以便您可以快速测试它。 Spawn 将您要尝试的可执行文件名称作为第一个参数 运行,作为第二个参数,它使用一个字符串数组来表示您要传递给该可执行文件的每个参数。
但是,如果您设置为使用 execSync 并且由于某种原因无法重定向 stdout 或 stderr,您可以打开另一个终端(如 xterm)并向其传递如下命令:
var execSync = require('child_process').execSync;
execSync("xterm -title RecursiveFileListing -e ls -latkR /");
这将允许您在新终端中查看您的命令正在做什么,但仍然有同步调用。
你可以通过 parent´s stdio to the child process 如果这是你想要的:
require('child_process').execSync(
'rsync -avAXz --info=progress2 "/src" "/dest"',
{stdio: 'inherit'}
);
您可以简单地使用 .toString()
。
var result = require('child_process').execSync('rsync -avAXz --info=progress2 "/src" "/dest"').toString();
console.log(result);
这已经在 Node v8.5.0
上测试过,我不确定以前的版本。根据 @etov,它不适用于 v6.3.1
- 我不确定中间值。
编辑:回想起来,我意识到它实际上并没有回答具体问题,因为它没有向您显示输出 'live' — 只有一次命令已完成 运行.
但是,我把这个答案留在这里,因为我知道很多人遇到这个问题只是为了寻找如何在执行后打印命令的结果。
简单:
try {
const cmd = 'git rev-parse --is-inside-work-tree';
execSync(cmd).toString();
} catch (error) {
console.log(`Status Code: ${error.status} with '${error.message}'`;
}
参考:
// nodejs
var execSync = require('child_process').execSync;
// typescript
const { execSync } = require("child_process");
try {
const cmd = 'git rev-parse --is-inside-work-tree';
execSync(cmd).toString();
} catch (error) {
error.status; // 0 : successful exit, but here in exception it has to be greater than 0
error.message; // Holds the message you typically want.
error.stderr; // Holds the stderr output. Use `.toString()`.
error.stdout; // Holds the stdout output. Use `.toString()`.
}
命令运行成功时:
在选项中添加{"encoding": "utf8"}
。
execSync(`pwd`, {
encoding: "utf8"
})