{"id":25530803,"url":"https://github.com/cloudwerx-dev/linux-quick-cheats","last_synced_at":"2026-05-05T21:31:20.886Z","repository":{"id":278139522,"uuid":"934638321","full_name":"CLOUDWERX-DEV/linux-quick-cheats","owner":"CLOUDWERX-DEV","description":"A lightning-fast terminal cheatsheet tool that provides instant access to your commands and snippets. Built with pure bash - no dependencies, no GUI, just speed.","archived":false,"fork":false,"pushed_at":"2025-02-18T08:20:53.000Z","size":342,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-18T08:21:53.321Z","etag":null,"topics":["cheatsheet","cli","commands","linux","man","script","shell","terminal","tldr"],"latest_commit_sha":null,"homepage":"http://cloudwerx.dev","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/CLOUDWERX-DEV.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-02-18T06:54:49.000Z","updated_at":"2025-02-18T08:20:57.000Z","dependencies_parsed_at":"2025-02-18T08:21:56.307Z","dependency_job_id":"b69b99d2-77c4-488d-b3e8-56ec62acb056","html_url":"https://github.com/CLOUDWERX-DEV/linux-quick-cheats","commit_stats":null,"previous_names":["cloudwerx-dev/linux-quick-cheats"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CLOUDWERX-DEV%2Flinux-quick-cheats","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CLOUDWERX-DEV%2Flinux-quick-cheats/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CLOUDWERX-DEV%2Flinux-quick-cheats/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CLOUDWERX-DEV%2Flinux-quick-cheats/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CLOUDWERX-DEV","download_url":"https://codeload.github.com/CLOUDWERX-DEV/linux-quick-cheats/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239753928,"owners_count":19691207,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cheatsheet","cli","commands","linux","man","script","shell","terminal","tldr"],"created_at":"2025-02-20T00:22:02.236Z","updated_at":"2026-01-16T00:30:14.995Z","avatar_url":"https://github.com/CLOUDWERX-DEV.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cimg src=\"logo.svg\" alt=\"Linux Quick Cheats\" width=\"400\" height=\"400\" title=\"Linux Quick Cheats\"\u003e\n\n\n# Quick-Cheats: Fast Terminal Command Reference\n\nA lightning-fast terminal cheatsheet tool that provides instant access to your commands and snippets. Built with pure bash - no dependencies, no GUI, just speed.\n\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n\n## Quick Start\n```\n# Show all commands\ncheats\n\n# Search for specific commands\ncheats docker\ncheats git\n\n# Show categories\ncheats -c\n\n# Get help\ncheats -h\n```\n\n## Features\n\n- 🚀 Instant access - type `cheats` and go\n- 🎨 Color-coded output for better readability\n- 🔍 Powerful search with context support\n- 📂 Multiple cheatsheet support\n- 💾 Import/Export functionality\n- ⚡ Zero dependencies - pure bash\n- 🛠 Pre-loaded with useful commands\n\n## Installation\n\n### Option 1: Automatic Installation\n```\ngit clone https://github.com/CLOUDWERX-DEV/linux-quick-cheats.git\ncd linux-quick-cheats\nchmod +x install.sh\n./install.sh\n```\n\n### Option 2: Manual Installation\n```\n# Create directories\nmkdir -p ~/bin ~/.cheatsheets\n\n# Download the script\ncurl -o ~/bin/cheats https://raw.githubusercontent.com/CLOUDWERX-DEV/linux-quick-cheats/main/cheats\nchmod +x ~/bin/cheats\n\n# Add to PATH\necho 'export PATH=\"$HOME/bin:$PATH\"' \u003e\u003e ~/.bashrc\nsource ~/.bashrc\n```\n\n## Uninstallation\n\nQuick-Cheats can be uninstalled either automatically using the provided script or manually.\n\n### Automatic Uninstall\n```\n./uninstall.sh\n```\n\n### Manual Uninstall\n```\n# Remove the executable\nrm ~/bin/cheats\n\n# Remove cheatsheet files\nrm ~/.cheatsheet.txt\nrm -rf ~/.cheatsheets\n\n# Remove from .bashrc (edit file and remove these lines):\n# export PATH=\"$HOME/bin:$PATH\"\n# alias cheat=\"cheats\"\n# alias cht=\"cheats\"\n# export CHEATS_HIGHLIGHT_COLOR=\"1;32\"\n\n# Optional: Remove bin directory if empty\nrmdir ~/bin 2\u003e/dev/null\n\n# Reload shell configuration\nsource ~/.bashrc\n```\n\nTo verify uninstallation:\n```\nwhich cheats              # Should return nothing\nls ~/.cheatsheet.txt     # Should show \"No such file\"\necho $CHEATS_HIGHLIGHT_COLOR  # Should return nothing\n```\n\n\n## Command Reference\n\n### Basic Commands\n```\ncheats                  # Show all commands\ncheats docker          # Search for docker commands\ncheats -h              # Show help\n```\n\n### Advanced Features\n```\ncheats -c              # List categories\ncheats -l              # List available cheatsheets\ncheats -f docker.txt   # Show specific cheatsheet\ncheats -C 2 nginx      # Show matches with 2 lines of context\ncheats -r \"^git.*\"     # Search using regex\ncheats --export        # Export cheatsheet\ncheats --import file   # Import cheatsheet\n```\n\n### Built-in Aliases\nThe installer automatically adds these aliases:\n```\ncheat    # Same as cheats\ncht      # Short form\n```\n\n## Directory Structure\n```\n$HOME/\n├── bin/\n│   └── cheats             # Main executable\n├── .cheatsheets/         # Category-specific sheets\n│   ├── default.txt\n│   └── docker.txt\n└── .cheatsheet.txt      # Main cheatsheet\n```\n\n## Default Content\nThe installer includes these categories:\n- Git Commands\n- Python/UV Commands\n- Docker Commands\n- Linux Shell Commands\n\nExample from default cheatsheet:\n```\n# Git Commands\ngit add . \u0026\u0026 git commit -m \"message\"    # Stage and commit all changes\ngit push origin main                    # Push to main branch\n\n# Docker Commands\ndocker ps -a                          # List all containers\ndocker images                         # List all images\n```\n\n## Customization\n\n### Adding Your Own Commands\nEdit ~/.cheatsheet.txt:\n```\n# My Custom Commands\nmyalias=\"custom command\"    # Description here\n```\n\n### Color Configuration\nAlready configured in ~/.bashrc:\n```\nexport CHEATS_HIGHLIGHT_COLOR=\"1;32\"  # Green highlights\n```\n\n## Troubleshooting\n\n### Common Issues\n\n1. Command not found\n```\n# Add to PATH manually\nexport PATH=\"$HOME/bin:$PATH\"\n```\n\n2. No color output\n```\n# Check color setting\necho $CHEATS_HIGHLIGHT_COLOR\n```\n\n3. Permission denied\n```\nchmod +x ~/bin/cheats\n```\n\n### Debug Mode\n```\nCHEATS_DEBUG=1 cheats search_term\n```\n\n## Examples\n\n### Basic Search\n```\n$ cheats git\ngit add . \u0026\u0026 commit -m \"message\"    # Stage and commit all changes\ngit push origin main               # Push to main branch\n```\n\n### Category View\n```\n$ cheats -c\n# Git Commands\n# Docker Commands\n# Python Commands\n# Linux Shell\n```\n\n### Context Search\n```\n$ cheats -C 1 docker\n# Docker Section\ndocker ps -a                      # List all containers\ndocker images                     # List all images\n# Next Section\n```\n\n## Contributing\n\n1. Fork the repository\n2. Create your feature branch\n3. Test your changes\n4. Submit a pull request\n\n## Security Notes\n\n- Don't store sensitive data in cheatsheets\n- Review imported cheatsheets before using\n- Keep backups of your custom content\n\n## Performance\n\nThe tool is designed to be fast and lightweight:\n- Pure bash implementation\n- No external dependencies\n- Instant response time\n- Minimal resource usage\n\n## Support\n\n- GitHub Issues: [Report Bug](https://github.com/CLOUDWERX-DEV/linux-quick-cheats/issues)\n- Author: [CLOUDWERX LAB](https://github.com/CLOUDWERX-DEV)\n- Website: [http://cloudwerx.dev](http://cloudwerx.dev)\n\n## License\n\nMIT License - see LICENSE file for details.\n\n---\n\nCreated with ❤️ by [CLOUDWERX LAB](http://cloudwerx.dev)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcloudwerx-dev%2Flinux-quick-cheats","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcloudwerx-dev%2Flinux-quick-cheats","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcloudwerx-dev%2Flinux-quick-cheats/lists"}