node.js - nodejs中使用shelljs模块的exec方法执行shell脚本命令,但是会多次执行,不知道为什么呢
ringa_lee
ringa_lee 2017-04-17 14:00:05
0
2
556

nodejs中使用shelljs模块的exec方法执行shell脚本命令,但是会多次执行,不知道为什么呢。 代码很简单,如下

start文件:

#!/usr/bin/env node

var shelljs = require('shelljs/global');
exec('node --version');

执行start, 终端显示:

v0.10.29
v0.10.29
v0.10.29
v0.10.29
v0.10.29
v0.10.29
v0.10.29
v0.10.29
v0.10.29
v0.10.29
v0.10.29

有的时候只展示1次,有的时候两行,也有可能是3,4,5,6... n 行, 有时候又没有执行。 so why

ringa_lee
ringa_lee

ringa_lee

reply all(2)
黄舟

Uninstall and install again

伊谢尔伦

Can you try the local writing method of shelljs? Check whether the local writing method is normal.

var shell = require('shelljs');
shell.exec('node --version');
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template