This repository contains a curated collection of my personal scripts, written in Python, Bash, and other scripting languages. These scripts are used for automation, system administration, development utilities, and general productivity improvements.
bash/
– Shell scripts for automation, system tasks, etc.python/
– Python scripts for tools, utilities, or automation.tools/
– One-off utilities or experimental prototypes.README.md
– Overview of available scripts and usage instructions.
- Centralized storage of reusable scripts
- Version control and history tracking
- Easy reuse across devices and environments
- Better logging/output formatting
- Command-line argument parsing
- Script documentation and examples
Contributions are welcome! To propose a change:
- Fork the repository and create a new branch (
git checkout -b feature/my-script
). - Add your script or update existing ones under the appropriate folder (
bash/
,python/
, ortools/
). - Include or update comments/documentation at the top of your script.
- Commit your changes with a clear message (e.g.,
feat: add new backup script
). - Push to your fork and open a Pull Request against
main
. - Ensure your changes follow the existing code style and pass any CI workflows.
We appreciate detailed descriptions and tests where applicable. Thank you for helping improve this toolbox!