Installation
Install Script (Recommended)
Section titled “Install Script (Recommended)”Pulls the latest prebuilt binary from GitHub Releases and drops it in your PATH.
# System-wide (uses sudo if /usr/local/bin isn't writable)curl -sSL https://raw.githubusercontent.com/zach-snell/bbkt/main/install.sh | bash
# User-local, no sudo (~/.local/bin)curl -sSL https://raw.githubusercontent.com/zach-snell/bbkt/main/install.sh | bash -s -- --userFish users on --user: run fish_add_path ~/.local/bin once if it isn’t already on $PATH.
Pre-compiled Binaries
Section titled “Pre-compiled Binaries”- Navigate to the Releases page.
- Download the binary matching your operating system and CPU architecture. Example identifiers:
- macOS (Apple Silicon):
bbkt-darwin-arm64 - macOS (Intel):
bbkt-darwin-amd64 - Windows:
bbkt-windows-amd64.exe - Linux:
bbkt-linux-amd64/bbkt-linux-arm64
- macOS (Apple Silicon):
- Mark it executable (macOS / Linux):
Terminal window chmod +x bbkt*
Build from Source
Section titled “Build from Source”Ensure you have Go 1.26+ installed.
git clone https://github.com/zach-snell/bbkt.gitcd bbktgo build -o bbkt ./cmd/bbkt