Bash If , Else If Conditionals
Bash provides programmatic conditional statements. Conditionals provides decision point for the application flow. For example if the file exists do this if not do another thing like logic operations. Syntax
1 2 3 | if .. then .. fi if .. then .. else .. fi if .. elif .. else ..fi |
As we see...