https://github.com/buguno/devops-shell-scripts
A collection of useful shell scripts for DevOps tasks, automation, and infrastructure management. Designed for quick access and reuse.
https://github.com/buguno/devops-shell-scripts
bash bash-script devops shell-script sysadmin
Last synced: 9 months ago
JSON representation
A collection of useful shell scripts for DevOps tasks, automation, and infrastructure management. Designed for quick access and reuse.
- Host: GitHub
- URL: https://github.com/buguno/devops-shell-scripts
- Owner: buguno
- License: mit
- Created: 2025-05-21T17:08:04.000Z (11 months ago)
- Default Branch: master
- Last Pushed: 2025-05-22T02:43:31.000Z (11 months ago)
- Last Synced: 2025-07-14T19:09:23.584Z (9 months ago)
- Topics: bash, bash-script, devops, shell-script, sysadmin
- Language: Shell
- Homepage:
- Size: 22.5 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# DevOps Shell Scripts
A collection of handy shell scripts for DevOps workflows, automation, and daily operations.
Easily reusable and organized for quick access.
## 📁 Structure
Scripts are organized by category:
- `networking/` – Scripts for networking tasks (e.g., port scan, IP info)
- `docker/` – Docker-related automation (builds, cleanups, etc.)
- `kubernetes/` – Common `kubectl` helpers
- `system/` – System checks, log management, service restarts
- `aws/` – AWS CLI wrappers and helpers
- `utils/` – Miscellaneous helper scripts
Feel free to customize and expand based on your needs.
## 🚀 Usage
Make sure scripts are executable:
```bash
chmod +x script.sh
```
Run with:
```bash
./script.sh
```
> You can also add them to your PATH for global use.
## ✅ Requirements
Most scripts are written in POSIX-compatible shell. Some may depend on:
- `bash`
- `curl`
- `jq`
- `awk`
- `docker`, `kubectl`, etc. (for specific tasks)
Check individual scripts for details.
## 📦 Contributing
Pull requests are welcome! Feel free to suggest new ideas, fix bugs, or improve the code.
## 📄 License
This project is licensed under the [`MIT License`](LICENSE).