在nodejs中执行shell命令

时间:2014-05-02 05:00:42

标签: node.js shell

我试图在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

我怎样才能解决这个问题

1 个答案:

答案 0 :(得分:2)

加倍反斜杠:

command +='find -type f -printf %T+\\t%p\\n | sort -n'