In any programming language, the task of comparing strings is generally required. For example, you need to take the user input for the password, phone number, email Continue Reading
Bash Shell Tutorials
In many other programming languages, this is called the switch case statement. In Bash, the Case statement is one of the decision making statements that let us Continue Reading
Generally speaking, the while loop is used to execute one or more commands (statements) until the given condition is True. As the condition becomes false, the execution Continue Reading
The if is one of the decision making statement in Bash Shell scripting. It enables us executing one block of code (to perform certain action) among the Continue Reading
The for loop is a way to execute a block of code repeatedly until a certain condition is met. All programming languages have loops to let the Continue Reading