Go to file
Rob Muhlestein fbaceabf16
Add version
2022-11-28 17:53:28 -05:00
.github Initial commit 2022-03-24 05:47:51 -04:00
env Add keg beginnings 2022-11-03 13:25:25 -04:00
git Reorg and add git deltags, removed version 2022-05-11 00:09:07 -04:00
install Update deps, add kube 2022-05-26 01:05:59 -04:00
tmux Reorg and add git deltags, removed version 2022-05-11 00:09:07 -04:00
.gitignore Update latest dependencies 2022-11-28 17:52:42 -05:00
build.yaml Update all to latest 2022-04-09 04:50:54 -04:00
CONTRIBUTING Initial commit 2022-03-24 05:47:51 -04:00
edit.go Add several commands and reorg 2022-03-29 06:10:18 -04:00
go.mod Update latest dependencies 2022-11-28 17:52:42 -05:00
go.sum Update latest dependencies 2022-11-28 17:52:42 -05:00
LICENSE Initial commit 2022-03-24 05:47:51 -04:00
main.go Add version 2022-11-28 17:53:28 -05:00
README.md Update README.md 2022-11-28 17:49:22 -05:00

🌳 Personal Bonzai Commandz

These days I prefer to maintain a single Go stateful command tree monolith tool rather than a ton of shell scripts in whatever languages. In fact, I created Bonzai specifically for this sort of thing. I just curl down a single binary to whatever system I'm on and I have all of my favorite functionality on any device with zero compatibility hassles and installation dependencies. Everything just works, anywhere.

Install

Note: you'll have to remove go.work yourself if you want to use this build yourself (or clone all my structure the same way). I'm saving my go.work in this Go repo only because it is a personal build.

go install github.com/rwxrob/z@latest

I prefer to use z instead of setting up a multicall binary since the habits it builds into my muscle memory work on any operating system or device and it doesn't take too much space when using UNIX pipelines and such:

echo $(z isosec) $(z y2j quotes.yaml | jq -r .mad )

Tab Completion

To activate bash completion just use the complete -C option from your .bashrc or command line. There is no messy sourcing required. All the completion is done by the program itself.

complete -C z z

If you don't have bash or tab completion check use the shortcut commands instead.

Embedded Documentation

All documentation (like manual pages) has been embedded into the source code of the application. See the source or run the program with help to access it.