Ahammed Basha Shaikday-8-of-100-days-challenge.hashnode.dev·Dec 17, 2024Mastering Shell Scripting for DevOpsIntroduction Shell scripting is a foundational skill for DevOps engineers, enabling task automation and efficient system management. This post outlines key steps to master shell scripting, along with practical use cases in the DevOps ecosystem. Why S...shell scripting
Bhaskar Mehtabhaskar422.hashnode.dev·Aug 15, 2023Break, Continue and More Commands In Shell ScriptBreak -> Suppose we want that our loop should stop running when certain conditions meet then we use Break. Example - Suppose we want to find a particular number from a list of numbers and if that number is found then we should come out of the loop. #...Shell ScriptingBreak in Shell Scripting