A growing collection of Bash utilities written on Fedora Linux.
This project is my way of learning Bash scripting by building simple, practical tools that are useful in everyday Linux administration. Rather than creating overly complex scripts, the focus is on writing clean, readable code that anyone can understand and improve.
- Show Date
- Show Current Directory
- List Files
- Show Current User
- Show Free Disk Space
- Show Memory Usage
- Show CPU Information
- Linux
- Bash
- Standard Linux utilities (
date,pwd,ls,whoami,df,free,lscpu)
Clone the repository:
git clone git@github.com:ghostkernelbash/LinuxToolbox.gitEnter the project directory:
cd LinuxToolboxMake the script executable:
chmod +x toolbox.shRun the toolbox:
./toolbox.shThis project is intended to grow over time as I continue learning Bash.
Planned additions include:
- Network Information
- System Uptime
- Process Viewer
- Disk Usage Analyzer
- Log Viewer
- System Health Report
- Additional Linux administration tools
Write code that is:
- Simple
- Readable
- Useful
- Easy to modify
- Well documented
Robert Ethridge