find which plugin a command is in
$ npm install -g @oclif/plugin-which
$ oclif-example COMMAND
running command...
$ oclif-example (--version)
@oclif/plugin-which/3.2.17 linux-x64 node-v18.20.4
$ 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