brief

Install

Requirements

Install From This Repo

go install ./cmd/brief

Or:

make install

PATH

If brief is not found after install, Go may have installed it to ~/go/bin because GOBIN is unset.

export PATH="$HOME/go/bin:$PATH"

To make that persistent in bash:

echo 'export PATH="$HOME/go/bin:$PATH"' >> ~/.bashrc
source ~/.bashrc

Verify

which brief
brief --help

Update

If you are working from this repo, pull the latest changes and reinstall:

git pull
go install ./cmd/brief

Or:

git pull
make install