Metadata-Version: 2.4
Name: centrip-book
Version: 1.0.6
Summary: A simple cross-system command bookmarking tool for your terminal.
Author: Michael Sowerwine
Author-email: you@example.com
License: MIT
Classifier: Programming Language :: Python :: 3
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: license
Dynamic: requires-python
Dynamic: summary

## 💡 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 saved command (auto-reindexes) |

---

## 🧠 Examples

```bash
# Add and name your favorite commands
book add "sudo nginx -t && sudo systemctl reload nginx" nginx
book add "cd /var/www/live" live
book add "git status" gs

# View all saved commands
book

# Run a saved one
book nginx
book gs

# Search for related entries
book find nginx

# Remove an outdated entry
book rm nginx
```

---

## 📂 Storage Format

Commands are stored in `~/.book` in this format:

```
1 : nginx : sudo nginx -t && sudo systemctl reload nginx
2 : live  : cd /var/www/live
3 : gs    : git status
```
