# Komando A command line utility to help you organize and easily access your commands. # Install from `Crates.io` Run: ```bash cargo install komando ``` Then source your `.bashrc`: ```bash source ~/.bashrc ``` Verify the installation works by running: ```bash komando --help ``` # Build from source Run: ```bash cargo build --release sudo cp target/release/komando_exec /usr/local/bin/ ``` And don't forget to source your `.bashrc`: ```bash source ~/.bashrc ``` Then verify the installation by running: ```bash komando --help ``` # Usage ## Saving a command Run: ```bash komando --save ``` This will save the previous command entered in the terminal, along with the directory at which it was run. ## Searching and executing a command Run: ```bash komando --query ``` This will search your saved commands for any command that contains the given query and list them. You will then be presented with an interactive terminal where you can choose the command using the `UP` and `DOWN` arrows. After choosing the command with `ENTER`, you can still edit it. At this point, hitting `ENTER` will execute the selected command. # License This project is licensed under the MIT License.