One of the most important and time-consuming tasks in scripting is building all of the conditional statements that we need to make the script usable and robust. There is an 80/20 rule that is often spoken of. This is where 20 percent of your time is spent in writing the main script and 80 percent of the time is spent in ensuring that all of the possible eventualities are correctly handled in the script. This is what we refer to as the procedural integrity of the script, where we try to cover each scenario carefully and accurately.
We started by looking at a simple test with command-line lists. If the actions needed are simple, then these provide great functionality and are easily added. Where more complexity is required, we add if statements.
Using the if statements, we can extend them as required using the else and elif keywords. Don't forget that elif keywords need their own conditions to evaluate.
We saw how to use if statements with the test command, and check strings, files, and numbers.
Finally, we saw how we can use case where a single expression needs to be evaluated.
In the next chapter, we will seek to understand the importance of reading in already prepared code snippets. We will create a sample if statement that can be saved as a code snippet to be read into the script at the time of editing.