Author Archives: Roopendra - Page 3

Navigating the Shift: The Reality of AI Adoption in the DevOps Ecosystem

The whole point of DevOps has always been to break down walls, speed up delivery, and get rid of the mind-numbing, repetitive tasks. For years, we did a pretty good job of that using standard scripts, CI/CD pipelines, and fixed monitoring rules. But today's setups—with microservices, multi-cloud environments, and infrastructure…
Continue Reading
Scripting

How to concatenate string variables in Bash

Here are few preferred ways to concatenate string variables in bash script Concatenate string variables in Bash the variable one after another in echo #!/bin/bash var1="Techieroop" var2="${var1} Tutorial" echo "${var2}" ##output Techieroop Tutorial 2. Use += assignment operator: #!/bin/bash var="Techieroop" var+=" Tutorial" echo "$var" ##output Techieroop Tutorial Second method can be…
Continue Reading
Verified by MonsterInsights