Working with BASH Variables In this blog we take a look at using and working with BASH variables. We should be able to understand how to read variables and set variables by the end. We…
Simple Logic with BASH Command Line Lists We can simplify our logic and coding by making use of BASH command line lists. This does create simple logic but may effect the readability of your code…
More Conditions using the BASH Case Statement Yes, we can create even more conditions when we make use of the BASH Case Statement in our scripts. Even though we could do the same using many…
Gather User Input in Your BASH Shell Script Welcome to my blog how we can gather user input within our BASH shell scripts. We will be making great use of the built-in command read and…
Next Step: Extending BASH IF Statements Now that we have seen how to create and use IF statements, let's now dive into extending BASH IF Statements with elif and else. When using BASH instead of…
Working With a Simple BASH IF Statement Let's look at how we can use the BASH IF Statement with a couple or worked examples. In this blog we look at a couple of examples of…