A hackable CLI helper tool written in bash.
To install pepe download the latest release here: Download Pepe and run the install script.
# run install script
. install.sh
Pepe on its own does very little. It actually just executes bash scripts that are located inside the ~/pepe/commands
folder.
If you omit any option to the pepe
command it will show you some usage information and the available commands.
# Omit the command name to show more information.
pepe
# Outputted informations
Usage
pepe [COMMAND] [[OPTIONS]...]
Available commands
create-command [NAME]
Helps creating custom commands
The install script will place a symlink inside your ~/bin/
folder. To uninstall the script just remove the symlink and delete the project folder.
rm ~/bin/pepe
rm -rf ~/pepe
- Fixed issue with install script using wrong parameters for verbose option.
- Changed install routine so no git clone is needed and the pepe folder will be placed in users home folder.
- Updated README.md to clear up installation logic.
Initial release