0.1.0 • Published 2 years ago

jeeves-cli v0.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

jeeves-cli

A nodejs CLI application with some helpful utilities

oclif Version CircleCI Downloads/week License

Usage

$ npm install -g jeeves-cli
$ jeeves COMMAND
running command...
$ jeeves (--version)
jeeves-cli/0.1.0 darwin-x64 node-v16.17.0
$ jeeves --help [COMMAND]
USAGE
  $ jeeves COMMAND
...

Commands

jeeves help [COMMAND]

Display help for jeeves.

USAGE
  $ jeeves help [COMMAND] [-n]

ARGUMENTS
  COMMAND  Command to show help for.

FLAGS
  -n, --nested-commands  Include all nested commands in the output.

DESCRIPTION
  Display help for jeeves.

See code: @oclif/plugin-help

jeeves ip

Provides information about your internet ip address

USAGE
  $ jeeves ip

DESCRIPTION
  Provides information about your internet ip address

EXAMPLES
  Show machine ip address

    $ jeeves ip

See code: dist/commands/ip/index.ts

jeeves ip internet

Provides information about your internet ip address

USAGE
  $ jeeves ip internet [-d]

FLAGS
  -d, --detail

DESCRIPTION
  Provides information about your internet ip address

EXAMPLES
  Show internet ip address

    $ jeeves ip internet

  Show internet ip address with detail

    $ jeeves ip internet -d | --detail

jeeves joke

describe the command here

USAGE
  $ jeeves joke [-t]

FLAGS
  -t, --type

DESCRIPTION
  describe the command here

EXAMPLES
  Get a random joke

    $ jeeves joke

  Get a random joke by type

    $ jeeves joke --type | -t

See code: dist/commands/joke.ts

jeeves plugins

List installed plugins.

USAGE
  $ jeeves plugins [--core]

FLAGS
  --core  Show core plugins.

DESCRIPTION
  List installed plugins.

EXAMPLES
  $ jeeves plugins

See code: @oclif/plugin-plugins

jeeves plugins:install PLUGIN...

Installs a plugin into the CLI.

USAGE
  $ jeeves plugins:install PLUGIN...

ARGUMENTS
  PLUGIN  Plugin to install.

FLAGS
  -f, --force    Run yarn install with force flag.
  -h, --help     Show CLI help.
  -v, --verbose

DESCRIPTION
  Installs a plugin into the CLI.

  Can be installed from npm or a git url.

  Installation of a user-installed plugin will override a core plugin.

  e.g. If you have a core plugin that has a 'hello' command, installing a user-installed plugin with a 'hello' command
  will override the core plugin implementation. This is useful if a user needs to update core plugin functionality in
  the CLI without the need to patch and update the whole CLI.

ALIASES
  $ jeeves plugins add

EXAMPLES
  $ jeeves plugins:install myplugin 

  $ jeeves plugins:install https://github.com/someuser/someplugin

  $ jeeves plugins:install someuser/someplugin

jeeves plugins:inspect PLUGIN...

Displays installation properties of a plugin.

USAGE
  $ jeeves plugins:inspect PLUGIN...

ARGUMENTS
  PLUGIN  [default: .] Plugin to inspect.

FLAGS
  -h, --help     Show CLI help.
  -v, --verbose

DESCRIPTION
  Displays installation properties of a plugin.

EXAMPLES
  $ jeeves plugins:inspect myplugin

jeeves plugins:install PLUGIN...

Installs a plugin into the CLI.

USAGE
  $ jeeves plugins:install PLUGIN...

ARGUMENTS
  PLUGIN  Plugin to install.

FLAGS
  -f, --force    Run yarn install with force flag.
  -h, --help     Show CLI help.
  -v, --verbose

DESCRIPTION
  Installs a plugin into the CLI.

  Can be installed from npm or a git url.

  Installation of a user-installed plugin will override a core plugin.

  e.g. If you have a core plugin that has a 'hello' command, installing a user-installed plugin with a 'hello' command
  will override the core plugin implementation. This is useful if a user needs to update core plugin functionality in
  the CLI without the need to patch and update the whole CLI.

ALIASES
  $ jeeves plugins add

EXAMPLES
  $ jeeves plugins:install myplugin 

  $ jeeves plugins:install https://github.com/someuser/someplugin

  $ jeeves plugins:install someuser/someplugin

jeeves plugins:link PLUGIN

Links a plugin into the CLI for development.

USAGE
  $ jeeves plugins:link PLUGIN

ARGUMENTS
  PATH  [default: .] path to plugin

FLAGS
  -h, --help     Show CLI help.
  -v, --verbose

DESCRIPTION
  Links a plugin into the CLI for development.

  Installation of a linked plugin will override a user-installed or core plugin.

  e.g. If you have a user-installed or core plugin that has a 'hello' command, installing a linked plugin with a 'hello'
  command will override the user-installed or core plugin implementation. This is useful for development work.

EXAMPLES
  $ jeeves plugins:link myplugin

jeeves plugins:uninstall PLUGIN...

Removes a plugin from the CLI.

USAGE
  $ jeeves plugins:uninstall PLUGIN...

ARGUMENTS
  PLUGIN  plugin to uninstall

FLAGS
  -h, --help     Show CLI help.
  -v, --verbose

DESCRIPTION
  Removes a plugin from the CLI.

ALIASES
  $ jeeves plugins unlink
  $ jeeves plugins remove

jeeves plugins:uninstall PLUGIN...

Removes a plugin from the CLI.

USAGE
  $ jeeves plugins:uninstall PLUGIN...

ARGUMENTS
  PLUGIN  plugin to uninstall

FLAGS
  -h, --help     Show CLI help.
  -v, --verbose

DESCRIPTION
  Removes a plugin from the CLI.

ALIASES
  $ jeeves plugins unlink
  $ jeeves plugins remove

jeeves plugins:uninstall PLUGIN...

Removes a plugin from the CLI.

USAGE
  $ jeeves plugins:uninstall PLUGIN...

ARGUMENTS
  PLUGIN  plugin to uninstall

FLAGS
  -h, --help     Show CLI help.
  -v, --verbose

DESCRIPTION
  Removes a plugin from the CLI.

ALIASES
  $ jeeves plugins unlink
  $ jeeves plugins remove

jeeves plugins update

Update installed plugins.

USAGE
  $ jeeves plugins update [-h] [-v]

FLAGS
  -h, --help     Show CLI help.
  -v, --verbose

DESCRIPTION
  Update installed plugins.

jeeves weather

describe the command here

USAGE
  $ jeeves weather [-c <value> | -z <value>]

FLAGS
  -c, --city=<value>
  -z, --zip=<value>   Zip code to retrieve weather from

DESCRIPTION
  describe the command here

EXAMPLES
  Show weather based on machine location (Uses GeoIp info)

    $ jeeves weather

  Show weather for specified city

    $ jeeves weather --city | -c

  Show weather for city with multiple words - option 1 enclose in ""

    $ jeeves weather --city "salt lake city"

  Show weather for city with multiple words - option 2 use either "-" or "_" to separate

    $ jeeves weather --city salt-lake-city

  Show weather for common city name, include country code to be more specific

    $ jeeves weather --city london,uk or jeeves weather --city london,us

  Show weather for specified zip code

    $ jeeves weather --zip | -z

  Show weather for specified zip code outside US, then country code must be included

    $ jeeves weather --zip 6000,ph

See code: dist/commands/weather.ts