All Projects → jamiebuilds → Globby Cli

jamiebuilds / Globby Cli

Licence: mit
User-friendly glob matching CLI

Programming Languages

javascript
184084 projects - #8 most used programming language

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].