{%= include("header") %} ## Usage ```js var gulp = require('gulp'); var choose = require('{%= name %}'); gulp.task('default', function() { return gulp.src('fixtures/*.*') .pipe(choose()) .pipe(gulp.dest('actual')); }); ``` ## options.choices If you need to be able to automatically skip the prompt, you can pass a string with your "choice" to `options.choices`. The following will only write `a.txt`: ```js gulp.task('default', function() { return gulp.src('fixtures/*.txt') .pipe(choose({choices: 'a.txt'})) .pipe(gulp.dest('actual')); }); ``` ## About ### Related projects {%= section("related", related(verb.related.list)) %} {%= section("community") %} ### Contributing {%= include("contributing") %} ### Building docs {%= include("build-docs") %} ### License {%= copyright({linkify: true, prefix: "Copyright", symbol: "©"}) %} {%= before.license ? (before.license + "\n") : "" %}{%= license %}{%= after.license ? (after.license + "\n") : "" %} *** {%= include("footer") %} {%= reflinks(verb.reflinks) %}