Skip to content

CLI Installation

The Code Search CLI provides powerful command-line access to search, replace, and manage repositories.

Code Search CLI terminal output Code Search CLI terminal output
bash brew install aanogueira/tap/code-search
bash # Apple Silicon (M1/M2/M3) curl -L
https://github.com/techquestsdev/code-search/releases/latest/download/code-search-darwin-arm64
-o code-search # Intel curl -L
https://github.com/techquestsdev/code-search/releases/latest/download/code-search-darwin-amd64
-o code-search chmod +x code-search sudo mv code-search /usr/local/bin/

Check that the CLI is installed correctly:

Terminal window
code-search --version
# code-search version 1.0.0
code-search --help

Enable command-line completions for your shell:

Terminal window
# Add to ~/.bashrc
source <(code-search completion bash)