# ZAMM A simple executor for shell commands you don't want to remember. So far only tested on Linux. Not just using Bash aliases because I intend to add success criteria and error handling as eventual features. ## Example Config Put this in your `~/.zamm/kb.json`: ```json [ { "name": "Example test command", "invocation": "hello", "command": "echo 'Hello world'" } ] ``` Then do `zamm hello` to execute the specified hello command. ## Install ```sh cargo install zamm ```