Metadata-Version: 2.4
Name: centrip-book
Version: 1.0.4
Summary: A simple cross-system command bookmarking tool for your terminal.
Home-page: https://github.com/yourusername/centrip-book
Author: Michael Sowerwine
Author-email: you@example.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: MacOS
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-python
Dynamic: summary

# centrip-book

📘 **Command Book** — a portable command bookmarking tool for Linux and macOS.

Save, run, search, and manage your favorite terminal commands quickly.

---

## 🚀 Installation
```bash
pip install centrip-book
```

If the command isn’t found, make sure `~/.local/bin` (or `/usr/local/bin`) is in your `$PATH`.

---

## 💡 Usage

| Command | Description |
|----------|-------------|
| `book <alias|index>` | Run a saved command |
| `book add "<command>" [alias]` | Add a new command (optional alias) |
| `book find <keyword>` | Search commands by keyword |
| `book rm <n|alias>` | Remove a command (auto-reindexes) |
| `book help` | Show usage only |

---

## 🧠 Examples
```bash
book add "ls -la" list
book add "sudo nginx -t && sudo systemctl reload nginx" nginx
book
book nginx
book find nginx
book rm list
```

---

## 📂 Storage Format
Commands are stored in `~/.book` in this format:
```text
1 : alias : command
2 : alias : command
```

---

## 🔧 Uninstall
```bash
pip uninstall centrip-book
```

---

## 🧑‍💻 Author
**Michael Sowerwine**  
MIT License  
https://github.com/yourusername/centrip-book
