BASH -Conditions and Loops
This page presents details about arrays, writing conditional statements and looing structures using BASH.
Working with Arrays
The Array is a type of variable which is the collection of multiple items of the same type. The counter in the array starts with zero –0. Declared as depts= (“cse” “cnd” “ece”)
as depts
being the name of the array. To fetch the output - echo $depts
. Below are the variations on working with arrays.
echo $depts
– will return 0th value or first value in the array i.e. cseecho ${depts[]}
–returns error as bad substitutionecho ${depts[2]}
– returns third value i.e.echo ${depts[3]}
– returns nothing as there is no value fordept[3]
depts[3] = "research"
– to insert the fourth element in thedept
arrayecho ${#depts[*]}
– returns the count of elements in the array i.e. returnsecho ${depts[*]:2:1}
– skips the first two elements and only prints the next one value i.e. returnsecho ${depts[]/research/phd}
– replaces the “research” element in the array with“phd”
on runtime. However,echo ${depts[]}
still shows research as the change is only for runtime.depts2 = echo ${depts[*]/research/phd}
- to store the changeddepts
array intodepts2
array.echo ${depts2[*]}
returns values with phd in the fourth position.echo sort <<<"${depts[*]}"
- triple redirection to sort a text in array argument but not in a file argument.
If and Else Conditions
If and Else helps us handle and judge the conditions on data, we manage. Below are a few examples of Syntax. Highlighted are the required syntax constructs of if & else.
Running If and Else on command like as below. As soon as you close if using fi keywords, the if and else logic will get executed directly.
Looping Structure - for
For loop is used to repeat a task in a specific number of times we would like to process something. Below for.sh
is an example to demo a FOR loop with conduction using IN keyword to list of .sh files in each sub directory based on the total size of the file. The below script will print the size of all the .sh files in a list and then gives us the sum of the total size. Highlighted are the required syntax constructs for the For Loop.
Below is an example for FOR
loop using an array.The Array is a variable contains multiple items of the same type. For example, cities=("Chennai", "Hyderabad")
is an array with two items. echo $cities
will print the first value in the cities array i.e. Chennai. Highlighted are the required syntax constructs for theFor Loop.@ value in the array to call each element based on the increment value of i.
More examples - For loop
Looping Structure - While
Unlike a FOR
loop, when we use WHILE
loop –we don’t necessarily know how many times we are going through the loop. While.sh
is an example script that prompts the user to select an option, so while the user doesn’t choose to exit and live in the loop. Highlighted are the required syntax constructs of WHILE
Loop.
The script waits for the input choice from the user. Until the input is given as1 the loop is not broken. The loop will execute initially as the choice value is zero by default and waits for the input, which will be in the loop unless the user gives the value as 1.
Break and Continue inside Loop
Depending on the code, we might wish to break out of the loop or continue the loop so that we go back to loop statements and run them again. Below is an example for a break and continue. Unless we type exit, we will not be able to break the loop, else it still continues to run the same while again and again.
Case Statements
Case statements help us to test the value of something for multiple possible items, instead of using a bunch of If-else, we can use Case statements. Below is an example case.sh
for your reference. Highlighted are the constructs used in the case statements.
Last updated