oboegaki is a command-line tool for registering and managing frequently used commands along with their categories and notes.
- Add new commands with category and note
- List all registered commands
- Run a command by its index
- Delete a command by its index
-
Go to the Releases page.
-
Download the latest release ZIP file.
-
Unzip the file and move the binary to your PATH.
unzip obo_<version>.zip sudo mv obo /usr/local/bin/ sudo chmod +x /usr/local/bin/obo sudo mkdir -p /usr/local/share/licenses/oboegaki sudo mv LICENSE /usr/local/share/licenses/oboegaki/
Alternatively, you can use the install script:
curl -L https://github.com/mitty1293/oboegaki/raw/main/install.sh | sh
obo add --command "ls -l" --category "file" --note "List files in long format"
obo list
obo run --index 1
obo delete --index 1
The commands.json file, which stores your registered commands, is located in the following directory:
Path: ~/.config/oboegaki/commands.json
This file contains all the commands you have added, along with their categories and notes. You can manually back up or edit this file if necessary.
To uninstall oboegaki and remove the binary:
-
Delete the binary file
sudo rm /usr/local/bin/obo
-
Optionally, remove the configuration directory and the commands.json file
rm -rf ~/.config/oboegaki
This project is licensed under the MIT License - see the LICENSE file for details.