惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

V
V2EX
人人都是产品经理
人人都是产品经理
WordPress大学
WordPress大学
博客园 - Franky
小众软件
小众软件
酷 壳 – CoolShell
酷 壳 – CoolShell
Apple Machine Learning Research
Apple Machine Learning Research
爱范儿
爱范儿
IT之家
IT之家
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
V
Visual Studio Blog
S
SegmentFault 最新的问题
美团技术团队
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
有赞技术团队
有赞技术团队
B
Blog RSS Feed
Last Week in AI
Last Week in AI
Jina AI
Jina AI
博客园 - 司徒正美
The Cloudflare Blog
博客园_首页
博客园 - 聂微东
宝玉的分享
宝玉的分享
大猫的无限游戏
大猫的无限游戏

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Day 5 — Bash Scripting for Automation
Rahul Joshi · 2026-05-16 · via DEV Community

Modern infrastructure runs on automation.

Whether you're a:

  • DevOps Engineer
  • Linux Administrator
  • Cloud Engineer
  • Cybersecurity Professional
  • Backend Developer

You will eventually write Bash scripts.

From automating backups to deploying servers, monitoring systems, managing logs, and running CI/CD pipelines — Bash is everywhere.

If Linux is the operating system of the internet, then Bash is its automation language.

🔗 Resources


many beginners get confused between:

  • Bash
  • SH
  • ZSH
  • Fish
  • Dash
  • Yum
  • Apt
  • DNF

So before learning Bash scripting, let’s first understand the Linux shell ecosystem.


🧠 Understanding Linux Shells & Package Managers

Linux has multiple shells.

A shell is simply a command interpreter that lets users communicate with the operating system.

Think of it like:

User → Shell → Linux Kernel → Hardware

Enter fullscreen mode Exit fullscreen mode


🐚 Popular Linux Shells

bash Scripting


📦 Linux Package Managers

Package managers install software.

Different Linux distributions use different package managers.

Distribution Package Manager Example
Ubuntu APT apt install nginx
Debian APT apt update
CentOS 7 YUM yum install docker
RHEL YUM/DNF dnf install git
Fedora DNF dnf update
Arch Linux Pacman pacman -S nginx
Alpine Linux APK apk add curl

🚀 What is Bash?

Bash stands for:

Bourne Again SHell

It is the default shell for most Linux distributions.

A shell is simply a program that allows users to interact with the operating system.

Example:

pwd
ls
mkdir project

Enter fullscreen mode Exit fullscreen mode

These commands are executed through the shell.


🧠 What is Bash Scripting?

A Bash script is a file containing Linux commands executed sequentially.

Instead of manually typing commands repeatedly, you automate them inside a script.

Example:

#!/bin/bash

echo "Hello Rahul"
date
uptime

Enter fullscreen mode Exit fullscreen mode

Save as:

hello.sh

Enter fullscreen mode Exit fullscreen mode

Make executable:

chmod +x hello.sh

Enter fullscreen mode Exit fullscreen mode

Run:

./hello.sh

Enter fullscreen mode Exit fullscreen mode


⚡ Why Bash Automation Matters

Without automation:

❌ Manual server setup
❌ Repetitive deployments
❌ Manual backups
❌ Human errors
❌ Slow operations

With Bash automation:

✅ Faster workflows
✅ Repeatable processes
✅ Infrastructure consistency
✅ Reduced human mistakes
✅ Better productivity


📂 Bash Script Structure

Basic structure:

#!/bin/bash

# Comments start with #

echo "Starting Script"

# Commands here

Enter fullscreen mode Exit fullscreen mode


🔥 Variables in Bash

Variables store data.


✅ Creating Variables

name="Rahul"
age=22
city="Delhi"

Enter fullscreen mode Exit fullscreen mode

Access variables using $.

echo $name
echo $age

Enter fullscreen mode Exit fullscreen mode


⚠️ Important Rule

No spaces around =.

❌ Wrong:

name = "Rahul"

Enter fullscreen mode Exit fullscreen mode

✅ Correct:

name="Rahul"

Enter fullscreen mode Exit fullscreen mode


🧾 User Input

Take input dynamically.

#!/bin/bash

echo "Enter your name:"
read name

echo "Welcome $name"

Enter fullscreen mode Exit fullscreen mode


📌 Command Line Arguments

Arguments passed while running scripts.

#!/bin/bash

echo "First argument: $1"
echo "Second argument: $2"

Enter fullscreen mode Exit fullscreen mode

Run:

./script.sh Rahul Linux

Enter fullscreen mode Exit fullscreen mode

Output:

First argument: Rahul
Second argument: Linux

Enter fullscreen mode Exit fullscreen mode


🔍 Conditional Statements

Conditions allow decision-making.


✅ If Statement

#!/bin/bash

age=20

if [ $age -ge 18 ]
then
    echo "Adult"
fi

Enter fullscreen mode Exit fullscreen mode


✅ If-Else

#!/bin/bash

num=5

if [ $num -gt 10 ]
then
    echo "Greater than 10"
else
    echo "Less than or equal to 10"
fi

Enter fullscreen mode Exit fullscreen mode


✅ If-Elif-Else

#!/bin/bash

marks=75

if [ $marks -ge 90 ]
then
    echo "Grade A"
elif [ $marks -ge 70 ]
then
    echo "Grade B"
else
    echo "Grade C"
fi

Enter fullscreen mode Exit fullscreen mode


🧠 Comparison Operators

Operator Meaning
-eq Equal
-ne Not equal
-gt Greater than
-lt Less than
-ge Greater or equal
-le Less or equal

🔁 Loops in Bash

Loops repeat tasks automatically.


✅ For Loop

#!/bin/bash

for i in 1 2 3 4 5
do
    echo "Number: $i"
done

Enter fullscreen mode Exit fullscreen mode


✅ Range Loop

for i in {1..10}
do
    echo $i
done

Enter fullscreen mode Exit fullscreen mode


✅ While Loop

#!/bin/bash

count=1

while [ $count -le 5 ]
do
    echo $count
    ((count++))
done

Enter fullscreen mode Exit fullscreen mode


✅ Infinite Loop

while true
do
    echo "Running..."
    sleep 2
done

Enter fullscreen mode Exit fullscreen mode


🔨 Functions in Bash

Functions help organize reusable code.

#!/bin/bash

greet() {
    echo "Hello $1"
}

greet Rahul

Enter fullscreen mode Exit fullscreen mode


📦 Arrays in Bash

#!/bin/bash

fruits=("apple" "banana" "mango")

echo ${fruits[0]}
echo ${fruits[1]}

Enter fullscreen mode Exit fullscreen mode

Loop through array:

for fruit in "${fruits[@]}"
do
    echo $fruit
done

Enter fullscreen mode Exit fullscreen mode


📁 File Operations


✅ Check if File Exists

#!/bin/bash

if [ -f test.txt ]
then
    echo "File exists"
else
    echo "File not found"
fi

Enter fullscreen mode Exit fullscreen mode


✅ Create File

touch file.txt

Enter fullscreen mode Exit fullscreen mode


✅ Append to File

echo "New Log Entry" >> logs.txt

Enter fullscreen mode Exit fullscreen mode


⚙️ Process Automation


✅ Kill Process

pkill nginx

Enter fullscreen mode Exit fullscreen mode


✅ Restart Service

systemctl restart nginx

Enter fullscreen mode Exit fullscreen mode


✅ Check Service Status

systemctl status docker

Enter fullscreen mode Exit fullscreen mode


🕒 Cron Jobs for Scheduling

Cron automates scripts at scheduled times.

Open cron:

crontab -e

Enter fullscreen mode Exit fullscreen mode


✅ Run Every Day at Midnight

0 0 * * * /home/ubuntu/backup.sh

Enter fullscreen mode Exit fullscreen mode


✅ Run Every 5 Minutes

*/5 * * * * /home/ubuntu/monitor.sh

Enter fullscreen mode Exit fullscreen mode


🚀 Real-World Automation Scripts

Now the fun begins.


🔥 1️⃣ Automated Backup Script

#!/bin/bash

SOURCE="/home/ubuntu/data"
DEST="/backup"

DATE=$(date +%Y-%m-%d)

tar -czf $DEST/backup-$DATE.tar.gz $SOURCE

echo "Backup completed"

Enter fullscreen mode Exit fullscreen mode

What it does:

✅ Compresses files
✅ Creates timestamp backup
✅ Automates backup process


🔥 2️⃣ Disk Usage Monitoring Script

#!/bin/bash

THRESHOLD=80

USAGE=$(df / | grep / | awk '{ print $5 }' | sed 's/%//g')

if [ $USAGE -gt $THRESHOLD ]
then
    echo "Disk usage exceeded threshold!"
else
    echo "Disk usage normal"
fi

Enter fullscreen mode Exit fullscreen mode

Useful for:

  • Servers
  • Cloud VMs
  • Production systems

🔥 3️⃣ Website Monitoring Script

#!/bin/bash

URL="https://example.com"

STATUS=$(curl -o /dev/null -s -w "%{http_code}" $URL)

if [ $STATUS -eq 200 ]
then
    echo "Website is UP"
else
    echo "Website is DOWN"
fi

Enter fullscreen mode Exit fullscreen mode


🔥 4️⃣ Auto Deployment Script

#!/bin/bash

echo "Pulling latest code..."

git pull origin main

echo "Installing dependencies..."

npm install

echo "Restarting application..."

pm2 restart app

Enter fullscreen mode Exit fullscreen mode

Used heavily in:

  • DevOps
  • CI/CD
  • Production deployments

🔥 5️⃣ Log Cleanup Script

#!/bin/bash

find /var/log -type f -name "*.log" -mtime +7 -delete

echo "Old logs deleted"

Enter fullscreen mode Exit fullscreen mode

Deletes logs older than 7 days.


🛡️ Error Handling in Bash

Always validate failures.

#!/bin/bash

mkdir test

if [ $? -eq 0 ]
then
    echo "Directory created"
else
    echo "Failed"
fi

Enter fullscreen mode Exit fullscreen mode

$? stores previous command status.

  • 0 = success
  • Non-zero = failure

📌 Exit Codes

exit 0

Enter fullscreen mode Exit fullscreen mode

Success.

exit 1

Enter fullscreen mode Exit fullscreen mode

Failure.


🧪 Debugging Bash Scripts


✅ Run in Debug Mode

bash -x script.sh

Enter fullscreen mode Exit fullscreen mode

Shows command execution step-by-step.


✅ Strict Mode (Highly Recommended)

#!/bin/bash

set -euo pipefail

Enter fullscreen mode Exit fullscreen mode

This helps catch:

  • Undefined variables
  • Failed commands
  • Pipeline failures

⚡ Bash Automation in DevOps

Bash is heavily used in:

Area Usage
CI/CD Build automation
Kubernetes Cluster scripts
Docker Container automation
AWS EC2 setup scripts
Monitoring Health checks
Security Log scanning
Linux System administration

🔐 Security Best Practices

Never write insecure scripts.


❌ Avoid Hardcoding Passwords

Bad:

password="admin123"

Enter fullscreen mode Exit fullscreen mode

Better:

read -s password

Enter fullscreen mode Exit fullscreen mode


✅ Quote Variables

Bad:

rm -rf $dir

Enter fullscreen mode Exit fullscreen mode

Good:

rm -rf "$dir"

Enter fullscreen mode Exit fullscreen mode


✅ Validate Inputs

Always sanitize user input.


📚 Important Bash Commands Every Engineer Should Know

Command Purpose
grep Search text
awk Text processing
sed Stream editing
cut Extract columns
find Search files
xargs Command chaining
curl API requests
tar Archive files
cron Scheduling
systemctl Manage services

Bash Flow


🚀 Bash vs Python for Automation

Bash Python
Best for Linux automation Best for complex logic
Fast scripting Better readability
Native shell access Huge libraries
Lightweight Cross-platform

Most DevOps engineers use both.


🎯 Best Practices for Bash Scripting

✅ Use meaningful variable names
✅ Add comments
✅ Use functions
✅ Handle errors properly
✅ Use strict mode
✅ Keep scripts modular
✅ Log important actions
✅ Test before production


🧠 Final Thoughts

Bash scripting is one of the most valuable skills in Linux, DevOps, Cloud, and Cybersecurity.

The engineers who automate repetitive tasks become exponentially more productive.

Start small:

  • Automate backups
  • Monitor servers
  • Deploy applications
  • Clean logs
  • Schedule tasks

Over time, Bash becomes your operational superpower.