Introduction to Linux Shell and Shell Scripting When we use any major operating system, we usually interact with the shell without even knowing it. For instance, when we use Ubuntu or other Linux versions, we use the terminal to talk to the shell. In...
What is a Package Manager in Linux? A package manager in Linux is like an app store assistant. It helps you install, update, and remove software on your computer easily. This tool takes care of all the complex tasks involved in managing software, ma...
1. User Management:- If you want to create the user. Please enter c and press enter. You will get a User Creation console. Enter the username and password. You will get a user creation message. If you enter an existing user name then it will show yo...
In the world of DevOps, a solid understanding of Linux is essential. Linux, often referred to as the backbone of DevOps and cloud computing, is an open-source operating system that has become the foundation for many modern IT infrastructures. In this...
Introduction This is the last day of our #TerraWeekChallenge, it doesn't mean I'll stop learning about it but instead, I'll be deep down into more advanced topics to enhance my skills. In this post, we will dive into advanced Terraform topics such as...
Example 1: When the script is executed as ./createDirectories.sh day 1 90 vim createDirectories.sh #!/bin/bash cd /home/kali/advshell start=$1 stop=$2 mkdir $(eval echo day{$start..$stop}) then it creates 90 directories as day1 day2 day3 .... day90 E...