📄️ Writing Your Own Scripts
Writing Your Own Scripts
📄️ Variables
As you write more complicated scripts you need to use variables to make it more flexible. The way to do this is to use variables. Can you imagine writing code without use variables? It's possible, I suppose, but certainly not fun. And let's not do it!
📄️ Conditionals
In order to write useful bash scripts you need if statements. Let's go over how to make more complicated scripts using these control structures.
📄️ Loop & Arrays
Any programming language needs a way to do repetitive tasks and bash is no different. It has several flavors of loops that should look familiar to anyone who has done programming before.