我想在Windows上通过Grunt.js启动/停止XAMPP。有.bat文件可以这样做:C:\ xampp \ apache_start.bat和C:\ xampp \ apache_stop.bat。我没有找到任何适用于Windows命令行的Grunt插件。 有插件能够做到这一点吗?或者还有其他可能通过Grunt开始/停止XAMPP吗?
谢谢!
编辑:我最终找到的解决方案是grunt-shell。
答案 0 :(得分:0)
你试过grunt-commands ??
看起来它可以在windows中执行.bat文件
command : {
run_shell: {
type : 'shell',
cmd : './test.sh'
},
run_bat: {
type : 'bat',
cmd : 'test.bat'
},
run_cmd: {
cmd: ['mkdir __tmp__cmd', 'mkdir __tmp__']
}
}
答案 1 :(得分:0)
grunt-commands无效。或者作者忘记在评论中告诉我们一些特别的事情.... 这是“自由软”还有什么要说的......