A collection of software for CLI tools and utilities that I like.
- Go
- Tools are written in Go.
- GVM
- Helps with managing the Go version.
- ZSH
- The tools attempt to automatically register with your ZSH config (
${HOME}/.zshrc
).
- The tools attempt to automatically register with your ZSH config (
This will download the repo to a specific location on your system (default is ${HOME}/.tools
), attempt to compile the repo, and then run the freshly built binary install command. The install command will run the setup process and attempt to automate the installation the tools to be linked to your ${HOME}/.zshrc
file.
[WARNING]
This invokes a shell script for running the setup. You can review what the script does on GitHub. NEVER run a script blindly without making sure you trust it.
URL
- The URL to the shell file content. I used a short URL to keep things small.
DIR
- The name of the directory to install everything in, under the users
$HOME
path.
- The name of the directory to install everything in, under the users
Pick one of these methods for installing the tools.
URL="https://tinyurl.com/jgttech" DIR=".tools"; wget -qO- $URL | zsh -s -- $DIR;
URL="https://tinyurl.com/jgttech" DIR=".tools"; curl -s $URL | zsh -s -- $DIR;