Node.js通过带有传递参数的shell脚本执行python脚本

时间:2015-09-01 18:29:43

标签: javascript python node.js shell

所以我有一些执行shell scipt的javascript代码:

    var exec = Meteor.npmRequire('child_process').exec;
    exec("/Users/ray/Desktop/scripts/hello.sh");

这个shell scipt将执行一个python文件。我想知道如何从我的javascript代码传递这个shell脚本的python脚本的一些参数?

1 个答案:

答案 0 :(得分:1)

我相信如果您要添加您的论据:

exec("/Users/ray/Desktop/scripts/hello.sh arg1 arg2 arg3");

它应该有用。