57 lines
1.4 KiB
YAML
57 lines
1.4 KiB
YAML
baz:
|
|
- help
|
|
- setup
|
|
- unsetup
|
|
- install
|
|
- uninstall
|
|
- list
|
|
- update
|
|
- info
|
|
- upgrade
|
|
- version
|
|
- disable
|
|
- enable
|
|
|
|
baz install:
|
|
- local
|
|
- git
|
|
|
|
baz install local:
|
|
- <directory>
|
|
|
|
baz install git:
|
|
- git://
|
|
- https://
|
|
- git+https://
|
|
- http://
|
|
- git+http://
|
|
|
|
baz uninstall:
|
|
- $([ -d "$HOME/.local/share/baz/plugins" ] && find "$HOME/.local/share/baz/plugins" -maxdepth 1 -not -path . -and -not -path "$HOME/.local/share/baz/plugins" -type d -exec basename {} \;)
|
|
|
|
baz update:
|
|
- $([ -d "$HOME/.local/share/baz/plugins" ] && find "$HOME/.local/share/baz/plugins" -maxdepth 1 -not -path . -and -not -path "$HOME/.local/share/baz/plugins" -type d -exec basename {} \;)
|
|
|
|
baz info:
|
|
- exist
|
|
- local
|
|
- git
|
|
|
|
baz info exist:
|
|
- $([ -d "$HOME/.local/share/baz/plugins" ] && find "$HOME/.local/share/baz/plugins" -maxdepth 1 -not -path . -and -not -path "$HOME/.local/share/baz/plugins" -type d -exec basename {} \;)
|
|
|
|
baz info local:
|
|
- <directory>
|
|
|
|
baz info git:
|
|
- git://
|
|
- https://
|
|
- git+https://
|
|
- http://
|
|
- git+http://
|
|
|
|
baz disable:
|
|
- $([ -d "$HOME/.local/share/baz/plugins" ] && find "$HOME/.local/share/baz/plugins" -maxdepth 1 -not -path . -and -not -path "$HOME/.local/share/baz/plugins" -type d -exec basename {} \;)
|
|
|
|
baz enable:
|
|
- $([ -d "$HOME/.local/share/baz/plugins" ] && find "$HOME/.local/share/baz/plugins" -maxdepth 1 -not -path . -and -not -path "$HOME/.local/share/baz/plugins" -type d -exec basename {} \;)
|