What is this?
This is where I will make my notes and code snippets
Variable
NAME="John"
echo $NAME
echo "$NAME"
echo "${NAME}"
Condition
if [[ -z "$string" ]]; then
echo "String is empty"
elif [[ -n "$string" ]]; then
echo "String is not empty"
fi