find which plugin a command is in
npm install @oclif/plugin-whichfind which plugin a command is in



* @oclif/plugin-which
* Usage
* Commands
* Contributing
``sh-session`
$ npm install -g @oclif/plugin-which
$ oclif-example COMMAND
running command...
$ oclif-example (--version)
@oclif/plugin-which/3.2.43 linux-x64 node-v24.12.0
$ oclif-example --help [COMMAND]
USAGE
$ oclif-example COMMAND
...
Show which plugin a command is in.
`
USAGE
$ oclif-example which [--json]
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Show which plugin a command is in.
EXAMPLES
See which plugin the help command is in:
$ oclif-example which help
Use colon separators.
$ oclif-example which foo:bar:baz
Use spaces as separators.
$ oclif-example which foo bar baz
Wrap command in quotes to use spaces as separators.
$ oclif-example which "foo bar baz"
``
_See code: src/commands/which.ts_