我从grunt开始。我想从 CLI 执行几个 php 文件。
所以我已经安装了 grunt-shell
npm install --save-dev grunt-shell
现在我有这个 gruntfile:
module.exports = function(grunt) {
grunt.initConfig({
shell: {
php: {
multiple: {
command: [
'php -f /home/leandro/oskar.php',
'php -f /home/leandro/oskar2.php'
].join('&')
}
}
}
});
grunt.registerTask('default', ['shell:php']);
};
我已经尝试了调用任务的所有组合,但输出始终是:
Warning: Task "shell:php" not found. Use --force to continue.
Aborted due to warnings.