Installation
Choose your preferred installation method.
Homebrew (macOS/Linux)
brew install groo-dev/tap/cl
npm
npm install -g @groo.dev/cl-wrangler
pip
pip install cl-wrangler
From Releases
Download the latest binary from GitHub Releases:
- macOS (Apple Silicon)
- macOS (Intel)
- Linux (amd64)
curl -L https://github.com/groo-dev/cl-wrangler/releases/latest/download/cl_darwin_arm64.tar.gz | tar xz
sudo mv cl /usr/local/bin/
curl -L https://github.com/groo-dev/cl-wrangler/releases/latest/download/cl_darwin_amd64.tar.gz | tar xz
sudo mv cl /usr/local/bin/
curl -L https://github.com/groo-dev/cl-wrangler/releases/latest/download/cl_linux_amd64.tar.gz | tar xz
sudo mv cl /usr/local/bin/
From Source
git clone https://github.com/groo-dev/cl-wrangler.git
cd cl-wrangler/cli
go build -o cl
sudo mv cl /usr/local/bin/
Shell Completions
Enable tab completion for your shell:
- Zsh
- Bash
- Fish
# Add to ~/.zshrc
eval "$(cl completion zsh)"
# Or generate to file
cl completion zsh > "${fpath[1]}/_cl"
# Add to ~/.bashrc
eval "$(cl completion bash)"
cl completion fish | source