© 2023 Hashnode
#shell-scripting
Explain in your own words and examples, what is Shell Scripting for DevOps. Shell scripting is a command line interpreter and shell script is nothing but a list of commands executed by the shell. If we talk about DevOps engineers then a De…
As a DevOps engineer, one of your responsibilities is to automate tasks to save time and increase efficiency. In Linux, shell scripts and cron can help you achieve this goal. In this post, we'll cover…
What is Kernel In Linux : The kernel is a computer program that is the core of a computer’s operating system, with complete control over everything in the system. The kernel is responsible for: Proc…
Advance Linux Scripting Write a bash script createDirectories.sh that when the script is executed with three given arguments (one is directory name and second is start number of directories and third…
What is Shell Scripting? Shell scripting is a programming language used to automate tasks in a shell environment. A shell is a command-line interface used to communicate with an operating system. The …
Day 4 of #90DaysOfDevOps with the #TrainWithShubham Community. The challenge is for the DevOps Community to get stronger in #DevOps. It is a great initiative by Shubham Londhe. Documenting my learning…
Shell scripting in LINUX What is Shell Scripting? It is a set of commands written in an executable file to automate any task. The commands are converted then to machine-readable form to execute. Sy…
Introduction: This is Part 2 of my Linux series, Here I will explain the basics of shell script programming or shell scripting, and hopefully introduce some of the possibilities of simple but powerful…
What is bash scripting and what you can do with it? Bash scripting, also known as shell scripting, is a way to automate tasks and execute commands in the terminal using the Bash shell. Bash is the default shell on most Linux and macOS syst…
INPUT /OUTPUT REDIRECTION I/O redirection is like changing the direction of water in a hose. Normally, water comes out of the hose, but if you attach it to a sprinkler, the water comes out in a differ…