This repository contains custom CLI tools and utility scripts meant to be available system-wide.
bin/
: Executable scripts (e.g.,pretty_print.sh
)activate_tools.sh
: Sets up symlinks to make scripts available globally
After cloning the repository:
git clone https://github.com/lukmay/cli-tools.git ~/dev/cli-tools
cd ~/dev/cli-tools
./activate_tools.sh
This creates symlinks from the bin/
scripts to /usr/local/bin
, making them globally executable. The script also ensures the files are executable.
To get the latest changes or sync across systems:
cd ~/dev/cli-tools
git pull
./activate_tools.sh
- Ensure
/usr/local/bin
is in yourPATH
. - Scripts in
bin/
must have executable permissions.