8000 GitHub - sindresorhus/matcher-cli: Simple wildcard matching
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

sindresorhus/matcher-cli

Repository files navigation

matcher-cli

Simple wildcard matching

Useful when you want to accept loose string input and regexes/globs are too convoluted.

Install

npm install --global matcher-cli

Usage

$ matcher --help

  Usage
    $ <input> | matcher <pattern> […]

  Options
    --case-sensitive  Case-sensitive matching

  Example
    $ ls
    cli.js
    license
    package.json
    readme.md
    test.js
    $ ls | matcher '*.js' '!test.js'
    cli.js

Related

0