To build terminostr from source, follow these steps:
- Clone the repository:
git clone https://github.com/nodetec/terminostr.git
- Navigate to the project directory:
cd terminostr
- Install dependencies:
go get ./...
- Build the application:
go build .
This will build the terminostr
binary in the current directory.
You can also use go install
to install the binary to your $GOPATH/bin
directory:
go install .
This will install the terminostr
binary to $GOPATH/bin
.