标签: javascript node.js exec mean-stack
我有一个场景,我想比较两个文本文件。我该怎么做 ? 我正在使用node exec来运行命令
exec(command, function(error, stdout, stderr) {});
我想查看stdout,我的实际输出是相同的。如果我正在进行字符串比较,它将失败。我预期的样本实际输出是" 4 \ n2 \ n5 \ n8 \ n3"我进入stdout的时候是" 4 2 5 8 3 \ n"。
stdout
哪种比较最好的方式?