Anirban Banerjeeanirbanbanerjee13.hashnode.dev·Oct 9, 2024Understanding the power of Shell Scripting in DevOpsShell scripting is like a magic wand for DevOps professionals. It allows you to execute a series of commands effortlessly, automating tasks and streamlining workflows. Imagine having a script, say "my_file.sh," that runs multiple commands in one go. ...shell scripting
Alla Yasheelacloud-z.hashnode.dev·Sep 9, 2024Shell Scripting (PART - 1)Shell scripting is a powerful way to automate tasks in Unix-like operating systems, such as Linux and macOS. By writing scripts, you can simplify complex tasks, automate repetitive actions, and even manage system configurations with just a few lines ...AzureDevOpsshell scripting
Vibhuti Jainvibhutijain.hashnode.dev·Aug 17, 2024Day 4 Task: Basic Linux Shell Scripting for DevOps EngineersWhat is kernel The kernel is a computer program at the core of a computer’s operating system that manages operations of computer and hardware. What is shell scripting Shell scripting is a series of Linux commands written in a file in sequence. It is ...1 like·51 readsLinux
Viveka Sharmaviveka.hashnode.dev·Jun 3, 2024Demystifying the Shebang Line: Your Key to Shell Scripting SuccessThe world of shell scripting might seem intimidating at first glance. But fear not, aspiring automators! Today, we'll unveil the secret behind the very first line you encounter in most shell scripts: the Shebang Line. What is the Shebang Line? Imagin...Linux
RAKESH REVASHETTIrakesh-revashetti-09.hashnode.dev·Nov 1, 2023Day 3: Linux shell scripting for DevOpsEvery DevOps Engineer must have a good understanding of Linux and Shell scripting. Shell is a program that provides a command line interface to interact with the operating system. 1: What is Shell scripting in DevOps? Shell scripting is very importan...#shellscripting #devops
Arfat Kadvekaratkblogs.hashnode.dev·Aug 1, 2023Into the Linux-verseHey Guys, here is another blog after the roller coaster ride of life... The continuation of the workshop series... Hope you love the blog from a naive blogger... Let's see what I have added to my mind palace... Filters Filters are programs that take ...10 likesLinux Workshop#learnwithpra9
James Mathengecodejunction.hashnode.dev·Jul 28, 2023The Advantage of Using #!/usr/bin/env bash Over #!/bin/bashShebang lines at the top of bash scripts allow you to specify the interpreter path to use when executing the script. There are two common approaches - using #!/bin/bash or #!/usr/bin/env bash. The latter provides significant advantages in terms of po...10 likes·475 readsBash
mehboob shaikhdevopsgyanwithmehboob.hashnode.dev·May 1, 2023Shell Scripting (Day 4 task)1.What is Linux Shell Scripting? Linux shell scripting is the process of writing programs or scripts in the Linux shell (command-line interface) using various shell scripting languages such as Bash, sh, ksh, etc. These scripts can automate tasks, exe...10 likes·32 readsDevops
Youssef Hassanjoehsn.hashnode.dev·Apr 13, 2023Shell basics handbookBuy me a coffee ☕ to help me keep going, thanks in advance! ❤ A shell is a program that acts as an interface between a user and the kernel. It allows a user to give commands to the kernel and receive responses from it. Through a shell, we can execut...42 readsHandbooksshell
Raahim Fareedqubits.hashnode.dev·Jul 30, 2022Shebangs: Scripting Made EasierShebang? Shebang, also known as Hashbang is a combination of characters #!. It specifies which interpreter is supposed to run the script. Shebangs are always supposed to be at the top of the script. They are helpful when scripting. How to write a she...1 like·55 readsshell