Conditions & Loops in Bash Scripting

In this post I am going to explain how to use conditions and loops. If you have some earlier programming knowledge you may know what are they. There are several ways that we can use to apply conditions in programming. In Java we are using if/else, switch like things. For loops we use for, while/do…

Introduction to Bash Scripting

A Bash script is a plain text file which contains a series of commands. These commands are a mixture of commands we would normally type ouselves on the command line (such as ls or cp for example) and commands we could type on the command line Running a Bash script is fairly easy. Another term…