如何通过mac osx中的ant脚本杀死节点服务器

时间:2014-06-12 21:08:34

标签: node.js macos ant exit

在Windows中我们可以使用

<target name="stopnode" description="Stops all instances of node">
    <exec executable="taskkill">
        <arg value="/IM"/>
        <arg value="node.exe"/>
    </exec>
</target>
当我使用kill -9 process_id

时,在Mac中

killall node

基于SO帖子Stop node.js program from command line

当我尝试使用以下代码来终止节点服务器时,它会显示process not found

<exec osfamily="unix" executable="killall" failonerror="false" resultproperty="prp.result.kill">
    <arg line="node"/>
</exec>

1 个答案:

答案 0 :(得分:0)

我现在正在使用pkill命令

pkill节点