Articles in this series
Monitoring The Free RAM Space In a Linux Server #!/bin/bash FREE_MEM=$(free -mt | grep Total | awk '{print $4}') TH=100 if [[ $FREE_MEM -lt $TH...
-> We can automate our shell script using two ways Using AT command -> Using at command we can automate the script if we have to run one time. at...
Break -> Suppose we want that our loop should stop running when certain conditions meet then we use Break. Example - Suppose we want to find a...
What is Function? -> If we have to perform repetitive tasks then instead of writing that task every time we write it in a block and whenever needed we...
Conditional Statement -> Conditional Statement is used to perform a certain task based on some conditions. IF-ELSE #!/bin/bash read -p "Enter Your...
What is User Interactions? -> In the previous blog we have seen that if we have to print the name then we were setting it in the script only. For...