Browsing Tag
bash
105 posts
How to Handle Signals in Bash
Every process running on a Linux system can receive signals — small interrupts sent by the kernel, other…
How to Debug Bash Scripts
Every script eventually breaks in a way that isn’t obvious from just reading the code. A variable that’s…
How to Monitor System Resources in Bash
Knowing what your server or workstation is doing at any given moment — CPU load, memory pressure, disk…
How to Manage Users and Permissions in Bash
Every multi-user Linux system depends on two things working correctly: knowing who’s allowed to do what (users and…
How to Use Remote Servers with SSH in Bash
SSH (Secure Shell) is how the vast majority of server administration actually happens. Whether you’re logging into a…
How to Schedule Tasks with Cron in Bash
Cron is the quiet workhorse behind most Linux automation — it’s what runs your backups at 2 a.m.,…
How to Create a Bash Alias
Anyone who spends real time in a terminal eventually gets tired of typing the same long command over…
How to Use History Commands in Bash
Every command you type into Bash gets remembered, and learning to actually use that history — rather than…
How to Set Aliases in Bash
If you spend any real time in a terminal, you already know the feeling of typing the same…
How to Customize Your Bash Prompt
The first thing I see every time I open a terminal is the prompt, and for years I…