Skip to content

Files

Latest commit

996682f · Apr 30, 2025

History

History
37 lines (24 loc) · 805 Bytes

README.md

File metadata and controls

37 lines (24 loc) · 805 Bytes

CLI Tools

This repository contains custom CLI tools and utility scripts meant to be available system-wide.

Structure

  • bin/: Executable scripts (e.g., pretty_print.sh)
  • activate_tools.sh: Sets up symlinks to make scripts available globally

Setup

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.

Updating

To get the latest changes or sync across systems:

cd ~/dev/cli-tools
git pull
./activate_tools.sh

Notes

  • Ensure /usr/local/bin is in your PATH.
  • Scripts in bin/ must have executable permissions.