文件名称:shellby:从 node.jsio.js 运行系列 shell 命令的简单方法
文件大小:3KB
文件格式:ZIP
更新时间:2024-06-30 02:22:58
javascript shell JavaScript
谢尔比 从 node.js 运行单个/系列 shell 命令。 安装 $ npm install shellby --save 用法 var shellby = require ( 'shellby' ) ; shellby . exec ( 'mkdir hello' , function ( err ) { console . log ( 'dir created' ) ; } ) ; shellby . series ( [ 'git pull' , 'npm i' ] , function ( err ) { console . log ( 'done' ) ; } ) ; 选项 您可以为每个命令指定一个选项对象。 有关支持哪些选项,请参阅。 如果没有指定选项,它们默认为{stdio: inherit} 。 var shellby = require ( 'shel
【文件预览】:
shellby-master
----.gitignore(29B)
----package.json(651B)
----.travis.yml(92B)
----index.js(1KB)
----README.md(2KB)
----test()
--------test.js(3KB)