Md Nur Mohammadmohammadwithdevops.hashnode.dev·Jan 31, 2025Advanced Linux Shell Scripting for DevOps Engineers with User management🌀Task 1: Bash Script to Create Dynamic Directories. Example 1: Creates 90 directories as day1 day2 day3....day90 using loop The +x option specifically sets the execute permission on a file, allowing it to be run as a program. Run the ./createDirect...Linux
Sandeep Naidusandeepnainala.hashnode.dev·Jan 23, 2025A Beginner's Guide to Shell Scripting: Key Concepts, Examples, and Best PracticesShell scripting is a powerful tool for automating tasks in a Linux environment. It enables developers and system administrators to execute a series of commands efficiently, saving time and reducing human error. In this blog, we’ll cover the essential...Devops
Rohit Pagoterohitpagote.hashnode.dev·Jan 10, 202503 - ShebangShebang The shebang (#!) is a special character sequence at the very beginning of a script file that tells the operating system which interpreter should be used to execute the script. Syntax #!/path/to/interpreter #: The comment character. !: In...Shell Scripts for BeginnersLinux
Rohit Pagoterohitpagote.hashnode.dev·Jan 10, 202502 - Flow Control in LinuxConditional Logic Conditional logic in shell scripting is used to execute commands based on specific conditions. This allows scripts to make decisions, enabling dynamic and flexible execution paths. Types of Conditional Statements if Statement if...Shell Scripts for BeginnersLinux
Rohit Pagoterohitpagote.hashnode.dev·Jan 9, 202501 - Shell Scripts IntroductionWhat is Shell Script? A shell script is a text file containing a series of commands written for the Linux shell (e.g., bash, zsh, or sh). Shell script in Linux is an easy to use time-saving solution for automating repetitive or complex set of tasks...32 readsShell Scripts for BeginnersLinux
Vishal Rayabarapudevops-blogs-vishal.hashnode.dev·Jan 5, 2025Integrating GitHub API Calls with Shell Scripts on AWS EC2Introduction : Automation is the most important step in Devops. In this blog , we’ll interact with the GitHub API to read the list of user’s public repositories and created date using shell scripts , running them on an AWS EC2 instance. Step-1 : Crea...29 readsDevops
Syed Dadapeerdrops.hashnode.dev·Dec 29, 2024Mastering DevOps: The Ultimate RoadMapWelcome to the ultimate DevOps roadmap! Whether you’re a beginner or aiming for the next level, this blog will take you from the fundamentals to advanced concepts with real-world examples and hands-on tips. Imagine streamlining your workflows, deploy...DevOpsDevops
Ahammed Basha Shaikday-13-of-100-days-challenge.hashnode.dev·Dec 24, 2024Automating 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
Pratulmyspace233.hashnode.dev·Dec 23, 2024Getting Started with Shell ScriptingLINUX I'm excited to continue my DevOps learning journey alongside my new role as a Level 2 Server Engineer. This position will not only allow me to gain hands-on industry experience but also help me deepen my understanding of technologies directly r...36 readsLinux
PIYUSH SHARMAk8dev.hashnode.dev·Dec 23, 2024Shell Scripting is the King of DevlopmentShell Scripting Shell scripting is a powerful process of automating day-to-day or regular activities on a Linux computer. It can be implemented on any AWS-hosted Linux machine or a Linux-hosted laptop. Here's an introduction to shell scripting and it...#shellscripting #devops