A while loop is a statement that iterates over a block of code till the condition specified is evaluated to false. We can use this statement or loop in our program when do not know how many times the condition is going to evaluate to true before evaluating to false.
The Syntax of a while loop in BASH Scripting
while [ condition ];
do
# statements
# commands
done
If the condition is true then the commands inside the while block are executed and are iterated again after checking the condition. Also if the condition is false the statements inside the while block are skipped and the statements after the while block are executed.
Looping Example using while statement in Linux
First, we create a text file using a text editor in Linux, in this case we are using `vim` Text Editor.
vim while.sh
#!/usr/bin/bash
a=7
while [ $a -gt 4 ];
do
echo $a
((a--))
done
echo "Out of the loop"
Explanation:
#!/usr/bin/bash
: This line is called a shebang and indicates the path to the interpreter that should be used to execute the script. In this case, it specifies that the Bash shell should be used.a=7
: Initializes a variable named a
with the value 7.while [ $a -gt 4 ];
: Starts a while loop that continues as long as the value of a
is greater than 4.do
: Marks the beginning of the code block to be executed within the while loop.echo $a
: Prints the current value of the variable a
to the console.((a--))
: Decrements the value of a
by 1. This is a shorthand way of writing a=$((a - 1))
.done
: Marks the end of the code block for the while loop.echo "Out of the loop"
: Prints "Out of the loop" to the console after the while loop has completed.
While Loop in Linux
In summary, this script initializes a variable `a`
with the value 7, then enters a while loop that continues as long as `a`
is greater than 4. Within the loop, it prints the current value of `a`
and decrements it by 1 in each iteration. Once `a`
becomes 4 or less, the loop exits, and the script prints "Out of the loop" to the console.
Reading a file with a while loop
We can read a file with a while loop in BASH. By parsing certain parameters to the while loop condition, we can iterate over the file line by line or by other groups like characters or words.
First, we create a text file using a text editor in Linux, in this case we are using `vim` Text Editor.
vim while.sh
#!/usr/bin/bash
file=temp.txt
while read -r line;
do
echo $line
done < "$file"
Explanation:
#!/usr/bin/bash
: This shebang line specifies that the Bash shell should be used to interpret the script.file=temp.txt
: Assigns the string "temp.txt" to the variable file
, representing the name of the file to be read.while read -r line;
: Initiates a while loop that reads each line from the specified file.do
: Marks the beginning of the code block to be executed within the while loop.echo $line
: Prints the content of the variable line
, which represents the current line being read from the file, to the console.done
: Marks the end of the code block for the while loop.< "$file"
: Redirects the input of the while loop to come from the specified file, in this case, "temp.txt".
In summary, this script reads each line from the file "temp.txt" and prints it to the console until there are no more lines left in the file. The -r
option with the read
command is used to ensure that backslashes in the input are treated as literal characters.
read file using while statement in Linux
We use the command read to actually fetch the lines or characters from the file. The read command is passed with -r argument which ignores the escaping of characters if the \ appears and hence it is parsed as its. We read a line from a file mentioned after the done statement. The read command reads a line from the mentioned file and the while loops end when the last line from the file is read ( no line is left to read).
This is how we can read the contents of the file using a while loop in BASH.
Infinite while loop
To create an infinite loop using a while loop statement. We don't need to put any condition in the while loop and hence the loop iterates infinitely. The below is the example of an infinite while loop:
First, we create a text file using a text editor in Linux, in this case we are using `vim` Text Editor.
vim while.sh
#!/usr/bin/bash
while :
do
echo "An Infinite loop"
# We can press Ctrl + C to exit the script
done
Explanation:
#!/usr/bin/bash
: The shebang line specifies that the Bash shell should be used to interpret the script.while :
: Initiates an infinite loop. The :
(colon) is a shell built-in command that always returns true, effectively creating an infinite loop.do
: Marks the beginning of the code block to be executed within the infinite loop.echo "An Infinite loop"
: Prints the string "An Infinite loop" to the console in each iteration of the loop.# We can press Ctrl + C to exit the script
: This is a comment indicating that you can interrupt the script by pressing Ctrl + C in the terminal. Ctrl + C is a common way to interrupt and terminate running scripts in the terminal.done
: Marks the end of the code block for the infinite loop.
In summary, this script creates an infinite loop that continuously echoes the message "An Infinite loop" to the console. The loop can be interrupted and the script exited by pressing Ctrl + C in the terminal.
Infinite loop using While Statement in Linux
Thus the while loop in the script is going to iterate for infinite time. We can manually break the loop or the script by CTRL + C.
While loop to iterate for a fixed number of times
We can use a while loop to iterate over a fixed number of times, we can set the condition to be -le or less than equal to a number, and the loop will iterate till the iterator is less than or equal to the number provided in the condition. Also, we need to increment the iterator manually so to keep the loop iterator ticking, or else the loop will go on forever.
First, we create a text file using a text editor in Linux, in this case we are using `vim` Text Editor.
vim while.sh
#!/usr/bin/bash
i=1
# the number 4 can be the limit to
# iterate the loop
while [ $i -le 4 ];
do
echo $i
((i++))
done
Explanation:
#!/usr/bin/bash
: The shebang line specifies that the Bash shell should be used to interpret the script.i=1
: Initializes a variable named i
with the value 1.while [ $i -le 4 ];
: Initiates a while loop that continues as long as the value of i
is less than or equal to 4.do
: Marks the beginning of the code block to be executed within the while loop.echo $i
: Prints the current value of the variable i
to the console.((i++))
: Increments the value of i
by 1. This is a shorthand way of writing i=$((i + 1))
.done
: Marks the end of the code block for the while loop.
while loop in Linux
In the above example, we can see that the loop iterates a defined number of times. As we have initialized the counter to 1 and the condition is to iterate the loop till the iterator is less than or equal to the number in this case 4. Thus, we can change the number in the condition as per our requirement.
Read the command-line argument with getopts options
We can use get ops options to read the input from the command line and if there are multiple arguments, we can check them and parse them one by one using a while loop. getopts is a tool to get user input from the command line, We can have multiple options to parse from the command line, and using getopts and while loops, we can make a professional-looking user input program.
First, we create a text file using a text editor in Linux, in this case we are using `vim` Text Editor.
vim while.sh
#!/bin/bash
while getopts n:a: OPT
do
case "${OPT}" in
n) name=${OPTARG} ;;
a) age=${OPTARG} ;;
*) echo "Invalid option"
exit 1 ;;
esac
done
printf "My name is $name and I am $age years old\n"
Explanation:
#!/bin/bash
: The shebang line specifies that the Bash shell should be used to interpret the script.while getopts n:a: OPT
: Initiates a loop that uses getopts
to parse command-line options. The options specified are n
and a
, both of which are expected to be followed by an argument.do
: Marks the beginning of the code block to be executed within the loop.case "${OPT}" in
: Starts a case statement that evaluates the value of the option encountered by getopts
.n) name=${OPTARG};;
: If the option is -n
, assigns the value of the corresponding argument to the variable name
.a) age=${OPTARG};;
: If the option is -a
, assigns the value of the corresponding argument to the variable age
.*) echo "Invalid option"
: If an invalid option is encountered, prints an error message to the console.exit 1;;
: Exits the script with a non-zero status code, indicating an error.esac
: Ends the case statement.done
: Marks the end of the code block for the loop.printf "My name is $name and am $age years old\n"
: Prints a formatted message to the console using the values of `name`
and `age`
obtained from the command-line options.
While loop in Linux
In this case, we have two options namely, the name and the age, you can have multiple options. We need to specify which option are we gonna use the switch case statements and from the command line using -shorthand option. In this case, we have used -n for name and -a for age. We also have a default or invalid case check to endure we do not parse wrong arguments. We can assign the value of the option using the OPTARG variable which parses the value provided to the option.
The while loop here is used to iterate till there are no options passed from the command line. We check for the -n and -a option and iterate till the carriage return or enter key is pressed and there are no further options to be parsed.
C-style while loop
We can use C-styled while loop in BASH, the variables need to be evaluated with BASH style but the overall syntax feels like C. We can use the operators like <,>,<= and so on in the condition of the while loop and hence it is called like the C-styled while loop.
First, we create a text file using a text editor in Linux, in this case we are using `vim` Text Editor.
vim c-style-while.sh
#!/bin/bash
i=0
while ((i < 12))
do
echo $i
((i+=2))
done
c-style-whileIn this example, we can see that the while loop has a condition with non-bash operators like -le, -ge, etc instead we use the C-styled operators in the condition. The rest of the loop is the basic loop as in BASH, the variable or iterator i is incremented by two as we can see in the last statement of the loop body. Thus the loop iterates over 5 times.
We can perform operations on a file, like reading only a particular part of a file. If we have columns that are formatted in a particular fashion, we can use variables to assign them and print them one row data time.
Here is the example file name "wh.txt"
vim wh.txt
we create a text file using a text editor in Linux, in this case we are using `vim` Text Editor.
vim file-while.sh
Language type released
Python general 1991
Javascript web 1995
Java mobile 1995
Rust embedded 2010
Go backend 2007
we create a text file using a text editor in Linux, in this case we are using `vim` Text Editor.
vim file-while.sh
#!/bin/bash
while read a b c
do
echo $b - $a
done < wh.txt
While loop in Linux
In this example, we have three rows, we read the contents by assigning them to the variables a,b, and c, it can be anything you like but remember to use them in the loop body. We can select a particular column like b and a and can print or perform any operations on them. This won't be reflected in the file though as they are just the local script variables.
Writing to a file using a while loop
We can write to a file by user input in a while loop. We can use the while loop to iterate till we manually exit out of the loop using CTRL + D by saving changes to the file or by CTRL + C for avoiding writing to the file. We use the read command to input the text from the command line and parse it to the file.
First, we create a text file using a text editor in Linux, in this case we are using `vim` Text Editor.
vim write-wh.sh
#! /bin/bash
file=wh.txt
echo "Enter the content into the file $file"
while read line
do
echo $line >> $file
done
while loop in Linux
So from the example above, we were able to enter text into a file using a while loop and read command. To exit out of the loop and save changes to the file, we use the CTRL+ D keys, and to exit out of the loop without saving anything into the file we can use the CTRL + C keys. Thus we enter the text from the command line to the text file using the read command and a while loop.
Break and continue Using while Loop
Break and continue are essential in a program that deals with loop statements as they control the flow of the loop statements without any explicit conditions.
Break statement in While Loop
We use break statements to exit out of the loop without waiting for the condition of the while loop to evaluate to false. This statement can be used within a loop block. This can be used to exit out of an infinite loop with a programmatic condition inside the loop and thus maintain the control of the loop.
For example, we have a script that counts from 1 and forever. But we can programmatically break out of the loop using a break statement inside the body of the loop with a condition.
First, we create a text file using a text editor in Linux, in this case we are using `vim` Text Editor.
vim while.sh
#!/usr/bin/bash
i=1
while :
do
echo $i
if [ $i -eq 20 ]; then
echo "This is the end of the loop"
break
fi
((i++))
done
Break statement while loop in Linux
From the script and the execution, we can see that we were able to break or exit an infinite loop with a conditional statement and the break statement. Thus the break statement is used to get the control flow of a program/script from inside a while loop to break out of the loop without the loop condition evaluating to false.
Continue statement in While Loop
We can use the continue statement to do the opposite of the break statement. It will jump to the start of the loop block and iterate again. This can be used for skipping over certain commands for certain conditions and hence allows a change in the flow of the loop.
For example, If we have a variable initialized to 1 and we want to display only the numbers divisible by five or in a certain pattern following a condition, we can use continue statements to do just that. This allows iterating over the loop in the desired manner.
First, we create a text file using a text editor in Linux, in this case we are using `vim` Text Editor.
vim while.sh
#!/usr/bin/bash
i=1
while [ $i -lt 30 ];
do
((i++))
if [[ $(( $i % 5 )) -ne 0 ]];
then
continue
fi
echo $i
done
Continue Statement in While loop in linuxAs we can see the continue statement, jumps to the beginning of the block and starts the execution of the commands by skipping the next commands inside the block. The while loop iterates for only the value of variable i being less than 30, thus the if condition checks if the variable i is divisible by 5, and if it's not we iterate over again using continue and increment the value of the variable i. The variable i only gets echoed if it's divisible by 5, thus the if condition is evaluated to false and we do not encounter a continue statement and carry with the normal flow of the loop. This is done to avoid logging of every number and only print the numbers which do not follow a pattern or condition in the if statement or other conditional statements.
Frequeltly Asked Questions
1. What is a `while`
loop in Bash scripting?
A while
loop is a control flow statement in Bash scripting that allows a certain block of code to be executed repeatedly as long as a specified condition is true. The loop provides a way to automate repetitive tasks and is a fundamental construct in scripting and programming.
2. How does the syntax of a `while`
loop look in Bash?
The basic syntax of a while
loop in Bash is as follows:
while [ condition ]
do
# Code to be executed while the condition is true
done
The `condition`
is a test that occurs before each iteration of the loop. If the condition is true, the code within the loop is executed. If the condition is false, the loop exits, and the script continues with the next command after the `done`
statement.
3. What is the role of the `(( ... ))`
construct in a Bash while
loop?
The `(( ... ))`
construct in Bash is used for arithmetic operations. In the context of a `while`
loop, it is often employed to evaluate arithmetic conditions.
For example: `((i < 10))
`
checks whether the variable `i`
is less than 10. This allows you to use arithmetic expressions directly in the loop condition, making it especially useful when dealing with numeric comparisons.
4. How to create an infinite loop using `while`
in Bash?
An infinite loop in Bash can be created by providing a condition that always evaluates to true.
For example:
while true
do
# Code for the infinite loop
done
Alternatively, you can use a non-zero constant in the condition, like `while [ 1 ]`
, to achieve the same result. Infinite loops are useful in situations where continuous execution is required until manually interrupted.
Conclusion
In this article we discussed the BASH scripting while loop which proves to be a versatile tool for executing a block of code repeatedly based on a specified condition. The basic syntax involves defining the condition within square brackets, allowing for flexible iterations. The article explores diverse applications of while loops, including reading from files, creating infinite loops, fixed iterations, parsing command-line arguments, and utilizing break and continue statements. From C-style syntax to interactive file writing, each example demonstrates the loop's adaptability in addressing a range of scripting needs. This comprehensive overview underscores the while loop's significance in BASH scripting, providing a robust mechanism for controlled repetition and efficient code execution.
Similar Reads
Linux/Unix Tutorial Linux is one of the most widely used open-source operating systems. It's fast, secure, stable, and powers everything from smartphones and servers to cloud platforms and IoT devices. Linux is especially popular among developers, system administrators, and DevOps professionals.Linux is:A Unix-like OS
10 min read
Getting Started with Linux
What is Linux Operating SystemLinux is based on the UNIX operating system. UNIX is a powerful, multi-user, multitasking operating system originally developed in the 1970s at AT&T Bell Labs. It laid the foundation for many modern operating systems, including Linux.Linux is free and open-source, accessible to everyone.Its sour
10 min read
LINUX Full Form - Lovable Intellect Not Using XPLINUX stands for Lovable Intellect Not Using XP. Linux was developed by Linus Torvalds and named after him. Linux is an open-source and community-developed operating system for computers, servers, mainframes, mobile devices, and embedded devices. Linux receives requests from system programs and it r
2 min read
Difference between Linux and WindowsLinux: Linux could be a free and open supply OS supported operating system standards. It provides programming interface still as programme compatible with operating system primarily based systems and provides giant selection applications. A UNIX operating system additionally contains several several
7 min read
What are Linux Distributions ?A Linux distribution, often shortened to âdistro,â is a packaged version of Linux that comes with the Linux kernel plus a collection of software and utilities that make the OS functional and user-friendly. Some distros are optimized for business environments, offering tools for productivity and ente
8 min read
Difference between Unix and LinuxUnix was created in the 1970s by Ken Thompson and Dennis Ritchie at Bell Labs. Dennis Ritchie was also the creator of the C programming language. Originally a command-line operating system, Unix has evolved to support graphical interfaces (GUI) as well. It became popular in universities, enterprises
5 min read
Installation with Linux
How to Install Arch Linux in VirtualBox?Installing Arch Linux on a virtual machine is an excellent way to experience this powerful and flexible Linux distribution without affecting your main system. If you're looking to install Arch Linux in VirtualBox, this guide will take you through the process step-by-step. Arch Linux is known for its
7 min read
Fedora Linux Operating SystemFedora Linux is a free and open-source operating system based on the Linux kernel and was developed by the community-supported Fedora Project. It is known for its fast release cycle, which keeps the operating system up to date with the latest software and technologies.What is the Fedora Linux Operat
12 min read
How to install Ubuntu on VirtualBox?Installing Ubuntu on VirtualBox is a great way to experience the powerful features of this popular Linux distribution without altering your main operating system. Whether youâre a developer, a student, or simply curious about Linux, setting up Ubuntu on VirtualBox allows you to test and explore in a
6 min read
How to Install Linux Mint?Linux Mint is the second-largest Linux-based distro used in the world. Linux Mint is a community-driven Linux distribution based on Ubuntu which itself is based on Debian and bundled with a variety of free and open-source applications. So here we discuss the installation of Linux mint. Installation
3 min read
How to Install Kali Linux on Windows?Kali Linux is an open-source Linux distribution based on Debian, designed for sophisticated penetration testing and security auditing. Kali Linux includes hundreds of tools for diverse information security activities such as penetration testing, security research, computer forensics, and reverse eng
2 min read
How to Install Linux on Windows PowerShell Subsystem?There are several ways to Install a Linux subsystem on your Windows PC Powershell Environment. It is good for learners, but it is recommended using original Linux OS if you are a developer as the Subsystem lacks the pre-installed Linux tools. Before we begin installing a Linux subsystem, we need to
2 min read
How to Find openSUSE Linux Version?openSUSE is well known for its GNU/Linux-based operating systems, mainly Tumbleweed, a tested rolling release, and Leap, a distribution with Long-Term-Support(LTS). MicroOS and Kubic are new transactional, self-contained distributions for use as desktop or container runtime. Here we figure out which
2 min read
How to Install CentOSCentOS is a popular open-source Linux distribution aimed at servers and provides compatibility with Red Hat's RPM package manager. It is built with the goal of providing a stable operating system that provided great compatibility with the upstream RHEL (Red hat enterprise Linux) CentOS is therefore
2 min read
Linux Commands
Linux CommandsLinux commands are essential for controlling and managing the system through the terminal. This terminal is similar to the command prompt in Windows. Itâs important to note that Linux/Unix commands are case-sensitive. These commands are used for tasks like file handling, process management, user adm
15+ min read
Essential Unix CommandsUnix commands are a set of commands that are used to interact with the Unix operating system. Unix is a powerful, multi-user, multi-tasking operating system that was developed in the 1960s by Bell Labs. Unix commands are entered at the command prompt in a terminal window, and they allow users to per
7 min read
How to Find a File in Linux | Find CommandThe find command in Linux is used to search for files and directories based on name, type, size, date, or other conditions. It scans the specified directory and its sub directories to locate files matching the given criteria.find command uses are:Search based on modification time (e.g., files edited
9 min read
Linux File System
Linux File SystemA file system is a structured method of storing and managing dataâincluding files, directories, and metadataâon your machine. Think of it like a library. If thousands of books were scattered around, finding one would be hard. But in an organized structure, like labeled shelves, locating a book becom
12 min read
Linux File Hierarchy StructureThe Linux File Hierarchy Structure or the Filesystem Hierarchy Standard (FHS) defines the directory structure and directory contents in Unix-like operating systems. It is maintained by the Linux Foundation. In the FHS, all files and directories appear under the root directory /, even if they are sto
6 min read
Linux Directory StructureIn Linux, everything is treated as a file even if it is a normal file, a directory, or even a device such as a printer or keyboard. All the directories and files are stored under one root directory which is represented by a forward slash /. The Linux directory layout follows the Filesystem Hierarchy
6 min read
Linux Kernel
Linux KernelLinux Kernel is the heart of Linux operating systems. It is an open-source (source code that can be used by anyone freely) software that is most popular and widely used in the industry as well as on a personal use basis. Who created Linux and why? Linux was created by Linus Torvalds in 1991 as a hob
4 min read
Kernel in Operating SystemA kernel is the core part of an operating system. It acts as a bridge between software applications and the hardware of a computer. The kernel manages system resources, such as the CPU, memory and devices, ensuring everything works together smoothly and efficiently. It handles tasks like running pro
9 min read
How Linux Kernel Boots?Many processes are running in the background when we press the system's power button. It is very important to learn the Linux boot process to understand the workings of any operating system. Knowing how the kernel boots is a must to solve the booting error. It is a very interesting topic to learn, l
11 min read
Difference between Operating System and KernelIn the world of computing, two terms that are frequently mentioned are Operating System (OS) and Kernel. In this article, we will explore the key differences between the OS and the Kernel, their functions, and how they work together to manage hardware and software.What is an Operating System?An Oper
3 min read
Linux Kernel Module Programming: Hello World ProgramKernel modules are pieces of code that can be loaded and unloaded into the kernel upon demand. They extend the functionality of the kernel without the need to reboot the system. Custom codes can be added to Linux kernels via two methods. The basic way is to add the code to the kernel source tree and
7 min read
Linux Loadable Kernel ModuleIf you want to add code to a Linux kit, the basic way to do that is to add source files to the kernel source tree and assemble the kernel. In fact, the process of setting up the kernel consists mainly of selecting which files to upload to the kernel will be merged. But you can also add code to the L
7 min read
Loadable Kernel Module - Linux Device Driver DevelopmentFor Linux device drivers, we can use only two languages: Assembler and C. Assembler implements the main parts of the Linux kernel, while C implements the architecture-dependent parts. Uploaded kernel modules are often referred to as kernel modules or modules, but those are misleading names because t
4 min read
Linux Networking Tools
Network configuration and troubleshooting commands in LinuxComputers are often connected to each other on a network. They send requests to each other in the form of packets that travel from the host to the destination. Linux provides various commands from network configuration and troubleshooting. Network Configuration and Troubleshooting Commands in Linux
5 min read
How to configure network interfaces in CentOS?A network interface is a link between a computer and another network(Private or Public). The network interface is basically a card which is known as NIC or Network Interface Card, this does not necessarily have to be in a physical form instead, it can be inbuilt into the software. If we take the exa
5 min read
Command-Line Tools and Utilities For Network Management in LinuxIf you are thinking of becoming a system administrator, or you are already a system admin, then this article is for you.As a system admin, your daily routine will include configuring, maintaining, troubleshooting, monitoring, securing networks, and managing servers within data centers. Network confi
8 min read
Linux - Network Monitoring ToolsNetwork monitoring is using a system (hardware or software) that continuously observes your network and the data flows through it, depending on how the monitoring solution actually functions and informs the network administrator. We can keep a check on all the activities of our network easily. While
4 min read
Linux Process
Linux Firewall
Shell Scripting & Bash Scripting
Introduction to Linux Shell and Shell ScriptingWhenever we use any modern operating system like Linux, macOS, or Windows we are indirectly interacting with a shell, the program that interprets and executes our commands. While running Ubuntu, Linux Mint, or any other Linux distribution, we are interacting with the shell by using the terminal. In
8 min read
What is Terminal, Console, Shell and Kernel?Understanding the terms terminal, console, shell, and kernel is crucial for anyone working with computers or learning about operating systems. These concepts are key components of how we interact with our devices and software. The terminal is a text-based interface used to interact with the computer
5 min read
How to Create a Shell Script in linuxShell is an interface of the operating system. It accepts commands from users and interprets them to the operating system. If you want to run a bunch of commands together, you can do so by creating a shell script. Shell scripts are very useful if you need to do a task routinely, like taking a backup
7 min read
Shell Scripting - Different types of VariablesThe shell is a command-line interpreter for Linux and Unix systems. It provides an interface between the user and the kernel and executes commands. A sequence of commands can be written in a file for execution in the shell. It is called shell scripting. It helps to automate tasks in Linux. Scripting
4 min read
Bash Scripting - Introduction to Bash and Bash ScriptingBash is a command-line interpreter or Unix Shell and it is widely used in GNU/Linux Operating System. It is written by Brian Jhan Fox. It is used as a default login shell for most Linux distributions. Scripting is used to automate the execution of the tasks so that humans do not need to perform them
12 min read
Bash Script - Define Bash Variables and its typesVariables are an important aspect of any programming language. Without variables, you will not be able to store any required data. With the help of variables, data is stored at a particular memory address and then it can be accessed as well as modified when required. In other words, variables let yo
12 min read
Shell Scripting - Shell VariablesA shell variable is a character string in a shell that stores some value. It could be an integer, filename, string, or some shell command itself. Basically, it is a pointer to the actual data stored in memory. We have a few rules that have to be followed while writing variables in the script (which
6 min read
Bash Script - Difference between Bash Script and Shell ScriptIn computer programming, a script is defined as a sequence of instructions that is executed by another program. A shell is a command-line interpreter of Linux which provides an interface between the user and the kernel system and executes a sequence of instructions called commands. A shell is capabl
4 min read
Shell Scripting - Difference between Korn Shell and Bash shellKorn Shell: Korn Shell or KSH was developed by a person named David Korn, which attempts to integrate the features of other shells like C shell, Bourne Shell, etc. Korn Shell allows developers to generate and create new shell commands whenever it is required. Korn shell was developed a long year bac
3 min read
Shell Scripting - Interactive and Non-Interactive ShellA shell gives us an interface to the Unix system. While using an operating system, we indirectly interact with the shell. On Linux distribution systems, each time we use a terminal, we interact with the shell. The job of the shell is to interpret or analyze the Unix commands given by users. A shell
3 min read
Shell Script to Show the Difference Between echo â$SHELLâ and echo â$SHELLâIn shell scripting and Linux, the echo command is used to display text on the terminal or console. When used with the $SHELL variable, which contains the path of the current user's shell program, the output of the echo command can be different depending on whether the variable is enclosed in single
4 min read