标签: node.js shell
我正在为Node.js编写一个小的CLI工具。在某些情况下,我想运行修改运行我的程序的shell的当前目录:
some/location$ myProg moveToSomewhere some/other/location$
child_process在这里无法提供帮助,因为它的命令在不同的shell中运行。
child_process
有办法做到这一点吗?