Linux Kernel Interface between hardware and software. The kernel is the core of a computer's operating system (OS). It manages the hardware, memory, and disk storage. It also acts as a bridge between the OS and the computer's hardware. Introduct...
What is Shell Scripting for DevOps? Shell scripting is a fundamental skill in DevOps, which is a set of practices that combine software development (Dev) and IT operations (Ops) to automate and streamline various aspects of the software development a...
Model 1 #!/usr/bin/bash count=10 if [ $count -eq 10 ] then echo "Condition True" fi Model 2 #!/usr/bin/bash count=10 if [ $count -ne 0 ] then echo "Condition True" fi Model 3 #!/usr/bin/bash count=10 if [ $count > 0 ] then echo "Condition True" fi Mo...