外壳
运行shell命令
与其他CLI工具进行交互的好方法。 例如,使用git branch获得当前的Git git branch 。
安装
$ npm install --save-dev grunt-shell
用法
require ( 'load-grunt-tasks' ) ( grunt ) ;
grunt . initConfig ( {
shell : {
options : {
stderr : false
} ,
target : {
command : 'ls'
} ,
another : 'ls ./src' // Shorthand
}
} ) ;
grunt . registerTask ( 'default' , [ 'shell' ] ) ;
例子
运行命令
创建一个名为test的文件夹。
grunt . initConf
1