1.0.1 • Published 6 years ago

globby-cli v1.0.1

Weekly downloads
78
License
MIT
Repository
github
Last release
6 years ago

globby-cli

User-friendly glob matching CLI

See globby

Install

npm install --global globby-cli

Usage

$ globby "images/*"
images/cat.png
images/dog.jpg
$ globby "images/*" -i "**/*.jpg"
images/cat.png
images/dog.jpg
$ globby "images/**/*" "static/**/*"
images/cat.png
images/dog.jpg
static/cow.gif
static/au/kangaroo.svg
$ globby "images/*" --json
[
  "images/cat.png",
  "images/dog.jpg"
]

See globby --help for a full list of flags or see the globby docs.