Basic Git Commands#90 Days DevOps Challenge#Zero To Hero#Day16 ๐ป Challenge Accepted with #tws by Shubham Londhe ๐จโ๐ซ The following is a list of useful Git commands to help you get started: Find changed files in the working directory: git status Change to tracked f...Jul 30, 2023ยท1 min read
Bash Scripting โ Case Statement#90 Days DevOps Challenge#Zero To Hero#Day11 ๐ป Challenge Accepted with #tws by Shubham Londhe ๐จโ๐ซ Case statement in bash scripts is used when a decision has to be made against multiple choices. In other words, it is useful when an expression has ...Jul 28, 2023ยท1 min read
Bash Script โ Define Bash Variables and its types#90 Days DevOps Challenge#Zero To Hero#Day10 ๐ป Challenge Accepted with #tws by Shubham Londhe ๐จโ๐ซ Variables are an important aspect of any programming language. Without variables, you will not be able to store any required data. With the help of ...Jul 28, 2023ยท1 min read
Some more shell scripting#90 Days DevOps Challenge#Zero To Hero#Day9 ๐ป Challenge Accepted with #tws by Shubham Londhe ๐จโ๐ซ if statement: Syntax: if [ expression ] then statement fi if-else statement: if [ expression ] then statement1 else statement2 fi while ...Jul 23, 2023ยท1 min read
Awk && Sed: Bash Command-line file Editing and Processing#90 Days DevOps Challenge#Zero To Hero#Day8 ๐ป Challenge Accepted with #tws by Shubham Londhe ๐จโ๐ซ Objective Awk and sed are command-line tools that provide tremendous power for managing and manipulating text files of arbitrary size, from very smal...Jul 22, 2023ยท2 min read
Advanced Bash ScriptingBash functions, list constructs, arrays, aliases, and regular expressions. #90 Days DevOps Challenge#Zero To Hero#Day7 ๐ป Challenge Accepted with #tws by Shubham Londhe ๐จโ๐ซ Using Functions to Reuse Code Bash functions make it possible to package c...Jul 21, 2023ยท10 min read
Bash Shell Script#90 Days DevOps Challenge#Zero To Hero#Day6 ๐ป Challenge Accepted with #tws by Shubham Londhe ๐จโ๐ซ First you need to find out where is your Bash interpreter located. Enter the following into your command line: $ which bash /bin/bash This comma...Jul 20, 2023ยท4 min read