Linux Shell Scripting (Day 04): Basic Linux Shell Scripting for DevOps Engineers π

Table of contents

Mastering shell scripting is essential for DevOps engineers to automate tasks, manage servers, and streamline workflows. Hereβs a structured breakdown of today's task:
Before Understanding about shell scripting letβs discuss some aspects related to linux-based OS archi.
Linux OS System Components & Functions:
Hardware Layer π₯οΈ :-
Includes physical components like:
CPU (Processor) β Executes instructions.
RAM (Memory) β Stores temporary data for running programs.
Disk (Storage: HDD/SSD) β Stores OS files, applications, and user data.
Network Interface Card (NIC) β Handles communication over the internet.
I**-Network Interface Card (NIC)** β Handles communication over the internet.
Note :- The hardware interacts with the OS only though kernel.
Linux = Kernel (the core system software). (As mentioned in Day02)
Linux-Based OS = Kernel + Tools + UI + Applications.
Kernel Layer (Core of Linux) βοΈ :-
The Linux Kernel is the heart of the OS. It directly manages hardware and system resources.
π οΈ Kernel Responsibilities:
Process Management β Schedules and controls running processes.
Memory Management β Allocates and deallocates RAM.
File System Management β Handles data storage and retrieval.
Device Drivers β Enables communication with hardware (e.g., printers, disks).
Networking β Manages internet connections and traffic routing.
Security & Access Control β Enforces user permissions.
Shell & Command-Line Interface (CLI) π±οΈ :-
The Shell is a command-line interface (CLI) that allows user to interact with OS.
A shell is special user program which provide an interface to user to use operating system services. Shell accept human readable commands from user and convert them into something which kernel can understand. It is a command language interpreter that execute commands read from input devices such as keyboards or from files. The shell gets started when the user logs in or start the terminal.
π οΈ Shell Functions:
Takes Users command and sends them to the kernel.
Supports scripting to automate tasks.
Example Shell Commands:
ls
β List files.pwd
β Show current directory.echo βtextβ
β Print text.bash script.sh
β Run a shell script.
System Libraries & Utilities π :-
These are pre-installed software components that help the OS run efficiently.
π οΈ Key Functions:
Provides standard function for applications (I/O, memory, networking).
Acts as a bridge between user applications and the kernel.
Includes essential tools (compilers, debugging utilities, performance monitoring).
Example Commands to Work with Libraries:
ldd /bin/ls
β Show shared libraries used by a command.dpkg -L libc6
β List files inside the libc6 package.
User Applications & Services π¦ :-
This is the topmost layer where users interact with the system via applications.
π οΈ Key Functions:
Provides a GUI or CLI interface for users.
Manages installed software.
Allows networking, file management, and programming.
Example Commands to Manage Applications:
sudo apt install <package>
β Install a package.rpm -q <package>
β Check if a package is installed.
How These Parts Work Together? π€ :-
Example : Running a Bash Command.
Step 1 β You type
ls -l /home/user/
in the terminalStep 2 β The Shell (CLI) sends the command to the Kernel
Step 3 β The Kernel interacts with the File System to fetch directory details.
Step 4 βThe result is displayed on your terminal screen
What is Shell Scripting? :-
A Shell Script is a file containing a series of Linux commands executed sequentially.
A shell script is a computer program designed to be run by a linux shell, a command-line interpreter. The various dialects of shell scripts are considered to be scripting languages. Typical operations performed by shell scripts include file manipulation, program execution, and printing text.
It helps automate repetitive tasks, manage servers, and optimize workflows.
Written using shell interpreters like Bash, Zsh, Fish, etc.
π‘ Example Use Cases:
Automating system updates π.
Managing users & permissions π€.
Monitoring system performance π.
Deploying applications π.
Creating backups & logs π.
Why Use Shell Scripting? :-
Saves Time β No need to run commands manually π.
Reduces Errors β Automates repetitive tasks π.
Increases Efficiency β Speeds up DevOps & system tasks β‘.
Customisable β Modify as per project needs π οΈ.
Lightweight β No need for extra software π―.
Day 4 Tasks :-
Ques : What is #!/bin/bash?
can we write #!/bin/sh
as well?
The line #!/bin/bash
at the beginning of a shell script is called a shebang (or "hashbang"). It tells the system which interpreter (shell) to use for executing the script.
π‘ Breaking it down:
#!
β This is a special character sequence called shebang (π€·ββοΈ be professional π) , which tells the OS to use the specified interpreter./bin/bash
β This is the path to the Bash shell (Bourne Again Shell).
Can we use #!/bin/sh
instead? π€
Yes, you can write #!/bin/sh
, but there are differences:
Shebang | Shell Used | Differences |
#!/bin/bash | Bash (Bourne Again Shell) | Supports advanced scripting features like arrays, [[ for conditions, == operator, and string manipulation. |
#!/bin/sh | POSIX Shell (Often a symlink to Bash, Dash, or other shell) | More portable but lacks many advanced features of Bash. |
When to use #!/bin/bash
vs #!/bin/sh
?
β
Use #!/bin/bash
when:
You need Bash-specific features like arrays, string operations, or advanced condition handling.
Your script is meant for Linux systems that support Bash.
β
Use #!/bin/sh
when:
You want maximum portability (e.g., scripts for UNIX, BSD, macOS, and Linux).
You donβt need Bash-specific features.
Ques : Write a Shell Script which prints I will complete #90DaysOofDevOps challenge?
Here's a simple shell script that prints your DevOps goal! πͺ
Steps to Create & Run the Script:
Step 1 :-
Create the script file:
vim devops_challenge.sh
vim devops_challenge.sh
Step 2 :-
Add the following script inside the vim editor opened after Step 1 :
#!/bin/bash echo "I will complete #90DaysOfDevOps challenge πͺπ₯"
Step 3 :-
- Save & exit
(CTRL + X
,then Y
, thenENTER
)
- Save & exit
Step 4 :-
Give execution permission:
as we know there are three options (
r β read
,wβ write
,x β execute
)chmod +x devops_challenge.sh
Step 5 :-
Run the script:
./devops_challenge.sh
Output :-
echo "I will complete #90DaysOfDevOps challenge πͺπ₯"
Subscribe to my newsletter
Read articles from Aditya Sharma directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by
