How to use gulp-shell

Comprehensive gulp-shell code examples:

How to use gulp-shell.task:

668
669
670
671
672
673
674
675
676
677
678
679
});


/**
 * Startup mongodb on local host for development.
 */
gulp.task('mongo-develop', shell.task([
    'mongod'
]));