$ npm install -g dops
$ dops COMMAND
running command...
$ dops (-v|--version|version)
dops/1.0.5 linux-x64 node-v15.11.0
$ dops --help [COMMAND]
USAGE
$ dops COMMAND
...
dops autocomplete [SHELL]
dops aws:ec2:ls
dops aws:lambda:ls
dops aws:profile:config [PROFILE_NAME]
dops aws:profile:getAccount
dops aws:profile:select
dops aws:profile:which
dops aws:sm:ls
dops git:fullfetch
dops help [COMMAND]
dops plugins
dops plugins:inspect PLUGIN...
dops plugins:install PLUGIN...
dops plugins:link PLUGIN
dops plugins:uninstall PLUGIN...
dops plugins:update
display autocomplete installation instructions
USAGE
$ dops autocomplete [SHELL]
ARGUMENTS
SHELL shell type
OPTIONS
-r, --refresh-cache Refresh cache (ignores displaying instructions)
EXAMPLES
$ dops autocomplete
$ dops autocomplete bash
$ dops autocomplete zsh
$ dops autocomplete --refresh-cache
See code: @oclif/plugin-autocomplete
List ec2 instances
USAGE
$ dops aws:ec2:ls
OPTIONS
-f, --format=format aws list ec2 instances in json or yaml format
-h, --help show CLI help
-r, --region=region aws list ec2 instances for specific region or all
See code: src/commands/aws/ec2/ls.ts
List lambda functions
USAGE
$ dops aws:lambda:ls
OPTIONS
-f, --format=format return result in json or yaml format
-h, --help show CLI help
-r, --region=region aws list lambda functions for specific region or default region
See code: src/commands/aws/lambda/ls.ts
Create new profile
USAGE
$ dops aws:profile:config [PROFILE_NAME]
OPTIONS
-f, --format=format aws list ec2 instances in json or yaml format
-h, --help show CLI help
-r, --region=region aws list ec2 instances for specific region or all
See code: src/commands/aws/profile/config.ts
Get aws account name or alias
USAGE
$ dops aws:profile:getAccount
See code: src/commands/aws/profile/getAccount.ts
Select aws profile
USAGE
$ dops aws:profile:select
See code: src/commands/aws/profile/select.ts
Get active profile
USAGE
$ dops aws:profile:which
See code: src/commands/aws/profile/which.ts
List secrets
USAGE
$ dops aws:sm:ls
OPTIONS
-f, --format=format return result in json or yaml format
-h, --help show CLI help
-r, --region=region aws list secrets for specific region or all region
See code: src/commands/aws/sm/ls.ts
List secrets
USAGE
$ dops git:fullfetch
OPTIONS
-h, --help show CLI help
See code: src/commands/git/fullfetch.ts
display help for dops
USAGE
$ dops help [COMMAND]
ARGUMENTS
COMMAND command to show help for
OPTIONS
--all see all commands in CLI
See code: @oclif/plugin-help
list installed plugins
USAGE
$ dops plugins
OPTIONS
--core show core plugins
EXAMPLE
$ dops plugins
See code: @oclif/plugin-plugins
displays installation properties of a plugin
USAGE
$ dops plugins:inspect PLUGIN...
ARGUMENTS
PLUGIN [default: .] plugin to inspect
OPTIONS
-h, --help show CLI help
-v, --verbose
EXAMPLE
$ dops plugins:inspect myplugin
See code: @oclif/plugin-plugins
installs a plugin into the CLI
USAGE
$ dops plugins:install PLUGIN...
ARGUMENTS
PLUGIN plugin to install
OPTIONS
-f, --force yarn install with force flag
-h, --help show CLI help
-v, --verbose
DESCRIPTION
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
$ dops plugins:add
EXAMPLES
$ dops plugins:install myplugin
$ dops plugins:install https://github.com/someuser/someplugin
$ dops plugins:install someuser/someplugin
See code: @oclif/plugin-plugins
links a plugin into the CLI for development
USAGE
$ dops plugins:link PLUGIN
ARGUMENTS
PATH [default: .] path to plugin
OPTIONS
-h, --help show CLI help
-v, --verbose
DESCRIPTION
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.
EXAMPLE
$ dops plugins:link myplugin
See code: @oclif/plugin-plugins
removes a plugin from the CLI
USAGE
$ dops plugins:uninstall PLUGIN...
ARGUMENTS
PLUGIN plugin to uninstall
OPTIONS
-h, --help show CLI help
-v, --verbose
ALIASES
$ dops plugins:unlink
$ dops plugins:remove
See code: @oclif/plugin-plugins
update installed plugins
USAGE
$ dops plugins:update
OPTIONS
-h, --help show CLI help
-v, --verbose
See code: @oclif/plugin-plugins