How To Perform Arithmetic Operations In Bash

In this article, we will focus on how to do mathematical operations in bash scripts. We can perform arithmetic operations in Bash using the built-in and external tools. First, we …

Bash Scripting – Select Loop Explained With Examples

We have seen about bash for loop, while loop, and until loop in our previous articles with detailed examples. Bash offers one more type of loop called select loop, which …

How To Create GUI Dialog Boxes In Bash Scripts With Zenity In Linux And Unix

When it comes to bash scripting, all the scripts are mainly focused on the command-line operation. Whether you need input from the user or display some messages, everything is done …

Bash Scripting – Conditional Statements

In this guide, we will learn the usage of conditional statements in Bash scripting with examples. Decision-making is an important step in programming. There may be a situation where certain …

Bash Scripting – String Manipulation

String manipulation one of the fundamental concepts of bash scripting. In programming, strings are one of the data types which are an ordered sequence of characters. It is important that …