8 |
This is auto generated Email.
9 |
10 |
11 |
12 |
13 |
14 | This is to alert you regarding
15 | ALERT_TYPE
16 | . Please find the details below and take appropriate action.
17 |
18 |
19 |
20 |
21 |
22 |
23 | BODY_CONTENT
24 |
25 |
26 |
27 |
28 |
29 |
30 | Regards,
31 |
32 |
33 | Linux Admin team.
34 |
35 |
--------------------------------------------------------------------------------
/variables.md:
--------------------------------------------------------------------------------
1 | ### Variables
2 |
3 | There multiple types to pass the values for variables in shell script. in shell scripting variable declaration is like below.
4 |
5 | ```
6 | VAR_NAME=SOME_VALUE
7 | ```
8 | * Directly in the script
9 | * We can run a command inside the script with in $() and get the output stored into variable.
10 | * We can pass from the arguments.
11 | * We can ask user to enter the value through read command.
--------------------------------------------------------------------------------