Tag: Scripting

Mastering Bash Scripting with Google’s Bash Style Guide

Scripting Practices Improvement in a New Organization I saw the need for a trustworthy style guide for an organization looking to improve its scripting processes. This would guarantee uniformity and efficiency in our scripting activities. The value of using a style guide was made clear in the con...

PHP isn’t that bad, so why the hate?

Despite the flak PHP often gets (which sometimes feels like it’s surpassed the number of internet cat videos), it is one of the most widely used server-side scripting languages out there. Yep, you heard it right. According to 3Techs, as of July 2023, PHP is used by a whopping 77.4% o...

azapi_resource: An alternative for Scripting in Terraform

What is azapi_resource? azapi_resource is a custom Terraform resource available through the AzureRM provider. It allows you to interact with the Azure Management API directly. While most Terraform resources are designed to create and manage infrastructure resources like virtual machines...

Shell Scripting made Easy!!

In this article, I have covered the basics and the syntaxes that will be required for our shell scripting journey in DevOps which you can learn easily without the need of you practicing it. So let’s go!! Shell Scripting Shell scripting is a scripting language that runs on top o...

Shell Scripting Basics

As a DevOps engineer, you might be always looking for automating tasks, and streamline workflows. Here comes the shell scripting into the picture. Pre-requisite for Shell Scripting: Linux Basics. Let’s get started! What is Kernel? Linux kernel is responsible for managing syste...

Function in Shell Scripting

In shell scripting, a function is a reusable block of code that performs a specific task or set of tasks. Functions are a fundamental construct in shell programming that allows you to break down your script into smaller, more manageable pieces, making your code more modular and easier to m...