我试图在nodejs script.it中执行以下shell命令在终端
中正常工作 find -type f -printf %T+\t%p\n | sort -n
节点脚本
var command = ' cd ~/home'
command +=' find -type f -printf %T+\t%p\n | sort -n'
exec(command, function (error, stdout, stderr) {
});
执行上述代码时
exec error: Error: Command failed: /bin/sh: 2: Syntax error: "|" unexpected
我怎样才能解决这个问题
答案 0 :(得分:2)
加倍反斜杠:
command +='find -type f -printf %T+\\t%p\\n | sort -n'