CLI tool that makes your local scripts and binaries able to be called from anywhere in your terminal.
./path/to/script
> Hello
climb create example path/to/script
example
> HelloUsage: climb <command> <alias> [script-path]
Commands:
create <alias> <script-path> Create a new alias for a script
update <alias> <script-path> Update an existing alias
delete <alias> Delete an existing alias
help Show this help message
Options:
--dry-run Preview changes without modifying files
See docs here
To install this cli, you will first need the go package if you haven't already. You can find instructions to install it here.
run:
chmod +x ./scripts/install.sh
./scripts/install.shBuild
make buildgo build -o ./bin/climbrun
./bin/climb create myAlias ./path/to/myScriptor
go run main.go create myAlias ./path/to/myScript