A collection of small, focused, shell-based CLIs to streamline day-to-day development and ops on Linux.
All tools are standalone Bash scripts and can be installed with a single curl + chmod.
| Tool | Area | Quick Summary | Docs |
|---|---|---|---|
dockex | Docker | Inspect, benchmark, backup/restore and clean Docker resources | Docker |
phpx | PHP | PHP version / extension manager, FPM/webserver config, doctor & tuner | PHP |
gitx | Git | Opinionated Git workflow, cleanup, summaries & changelog helper | Git |
chromacat | Terminal output | Colourful / animated text, banners & ASCII art with themes and palettes | ChromaCat |
sqlitex | SQLite | Non-interactive, flag-driven SQLite admin, migrations, seeds & tuning | Sqlite |
cleanx | Cleanup & Inodes | Safe, modular disk & inode cleaner; dry-run by default, quota/JSON/update | Clean |
- dockex – Docker helper: Docker
- phpx – PHP manager / doctor: PHP
- gitx – Git workflow helper: Git
- chromacat – colourful terminal text: ChromaCat
- sqlitex – SQLite CLI: Sqlite
- cleanx – disk & inode cleaner: Clean
Each tool lives in its own directory. Install only what you need:
# dockex – Docker helper sudo curl -fsSL "https://raw.githubusercontent.com/infocyph/Toolset/main/Docker/dockex" \ -o /usr/local/bin/dockex && sudo chmod +x /usr/local/bin/dockex# phpx – PHP manager sudo curl -fsSL "https://raw.githubusercontent.com/infocyph/Toolset/main/PHP/phpx" \ -o /usr/local/bin/phpx && sudo chmod +x /usr/local/bin/phpx# gitx – Git workflow helper sudo curl -fsSL "https://raw.githubusercontent.com/infocyph/Toolset/main/Git/gitx" \ -o /usr/local/bin/gitx && sudo chmod +x /usr/local/bin/gitx# chromacat – colourful terminal text / banners sudo curl -fsSL "https://raw.githubusercontent.com/infocyph/Toolset/main/ChromaCat/chromacat" \ -o /usr/local/bin/chromacat && sudo chmod +x /usr/local/bin/chromacat# sqlitex – SQLite CLI (CRUD, migrations, seeds, tuning) sudo curl -fsSL "https://raw.githubusercontent.com/infocyph/Toolset/main/Sqlite/sqlitex" \ -o /usr/local/bin/sqlitex && sudo chmod +x /usr/local/bin/sqlitex# cleanx – disk & inode cleaner (dry-run by default; use --yes to apply) sudo curl -fsSL "https://raw.githubusercontent.com/infocyph/Toolset/main/Clean/cleanx" \ -o /usr/local/bin/cleanx && sudo chmod +x /usr/local/bin/cleanxSee each tool’s README (linked above) for full command reference and examples.
Bug fixes, small UX improvements, new subcommands or better docs are all welcome. Open an issue or PR against this repo.
Licensed under the MIT License. See LICENSE for details.