Ahammed Basha Shaikday-13-of-100-days-challenge.hashnode.dev·20 hours agoAutomating GitHub Repository Management with Shell ScriptingIntroduction In the ever-evolving world of DevOps, automation is a cornerstone for efficiency and scalability. On Day 13 of the 100DaysOfDevOps challenge, we dive into a hands-on project that integrates shell scripting with the GitHub API. This proje...AWS
Ahammed Basha Shaikday-9-of-100-days-challenge.hashnode.dev·Dec 18, 2024Mastering Shell Scripting for DevOps Part-2Shell scripting is an indispensable skill for DevOps professionals, streamlining automation and ensuring efficient server management. In Day 9 of our 100 Days of DevOps Challenge, we dive deep into advanced shell scripting concepts that can elevate y...Devops
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
Yashraj Garnayakdisarj.hashnode.dev·Dec 6, 2024Week 4, Part 1: Bash Scripting 101 – Automating Your Way to Efficiency!Hey Everyone! 👋 This week was all about Bash scripting – a tool I’d heard about but never fully understood until now. As someone diving deeper into DevOps, I’ve realized that Bash scripting is more than just a skill; it’s a necessity. Why? Because i...DevOps JourneyDevOps Journey
Rudresh Singhbash-rudresh.hashnode.dev·Nov 13, 2024Bash_mid_AdvWe have already covered the variables — but just for refreshers… 1. Variables Basics: #!/bin/bash # Variable assignment name="Alice" echo "Hello, $name!" # Read input from the user echo "Enter your name:" read user_name echo "Hello, $user_name!" 2...Bash
Laura Diazlaurainthecloud.hashnode.dev·Nov 4, 2024Bash Scripting 👩🏽💻Table of Contents Why did I started learning Bash Scripting? My learning process Challenges faced Interesting discoveries Examples from my experience My humble advice and next steps Why did I started learning Bash Scripting? I started learnin...46 readslearnign DevOps
Munilakshmi G J100daysdevops.hashnode.dev·Nov 3, 2024Day 9 of 100 Days: Simple System Resource Monitor & Todo List Manager ( Bash Scripting Projects)Hey there, fellow learners! Welcome to Day 9 of our 100 Days of DevOps journey. Today, I’m excited to share two beginner-friendly Bash scripting projects that will enhance your command line skills and help you automate some everyday tasks. Let’s dive...Bash
Binod Prasad Joshibinodpj.hashnode.dev·Oct 27, 2024Shell Script BasicsIntroduction Shell scripting means writing sequence of commands that shell interprets or executes. Shell scripting serves as a backbone for automating repetitive tasks, deploying code, managing infrastructure, and handling complex DevOps workflows. C...34 readsshell
sneh srivastavasnehcreate.hashnode.dev·Oct 21, 2024Mastering Integer & String Comparisons in Bash ScriptingBash scripting is an essential tool for automating tasks on Linux systems. One key element is understanding how to work with integer and string comparison operators to control your script's logic. Here's a quick breakdown! 🚀 Integer Comparison Opera...bash scripting
Saksham Kambleskm-saksham.hashnode.dev·Oct 17, 2024Mastering Error Handling in Shell Scripting: Essential Techniques for Robust Automation 🚀📅 Day 11 Task: Error Handling in Shell Scripting 🚨 In today's DevOps journey, we focus on error handling in shell scripting—a crucial skill to make sure our scripts are robust, reliable, and ready for the real world! 🌎 Whether you're automating ba...Devops