The if
statement allows the script to make decisions based on conditions. It can be used with elif
(else-if) and else
to handle multiple conditions.
π Key Takeaways
β
Use if [ condition ]
for decision-making
β
Use elif
for multiple conditions
β
Use else
for a default action
β
Test files, numbers, and strings with built-in operators
β
$?
helps check command success/failure
1οΈβ£ Basic If-Else Syntax
2οΈβ£ Example: Checking a Number
π Operators Used:
-
-eq
β Equal to -
-ne
β Not equal to -
-gt
β Greater than -
-lt
β Less than -
-ge
β Greater than or equal to -
-le
β Less than or equal to
3οΈβ£ Example: Checking if a File Exists
π File Test Operators:
-
-f filename
β Checks if the file exists -
-d directory
β Checks if the directory exists -
-r filename
β Checks if the file is readable -
-w filename
β Checks if the file is writable -
-x filename
β Checks if the file is executable
4οΈβ£ Example: Checking User Permissions
π ! -e
checks if the file does not exist.
5οΈβ£ Example: Nested If Conditions
6οΈβ£ Example: Checking if a User is Root
π String Comparison Operators:
-
=
β Equal to -
!=
β Not equal to -
-z string
β Checks if string is empty -
-n string
β Checks if string is not empty
7οΈβ£ Example: Checking Internet Connectivity
π $?
stores the exit status of the last executed command (0 = success, non-zero = failure).