Harshit Sahuharshitsahu2311.hashnode.dev·Oct 7, 2024Advance Shell Scripting in LinuxTasks: Create Directories Using Shell Script: Write a bash script createDirectories.sh that, when executed with three arguments (directory name, start number of directories, and end number of directories), creates a specified number of directories w...111 readsMastering Linuxharshitsahu
Vibhuti Jainvibhutijain.hashnode.dev·Aug 18, 2024Day 5 Task: Advanced Linux Shell Scripting for DevOps Engineers with User ManagementCreate Directories Using Shell Script: Write a bash script createDirectories.sh that, when executed with three arguments (directory name, start number of directories, and end number of directories), creates a specified number of directories with a d...45 readsadvanceshellscripting
Snigdha Chaudharisnigdhachaudhari.hashnode.dev·Jul 9, 2024Advanced Shell Scripting ConceptsShell scripting is a powerful way to automate daily activities on a Linux server. In this blog, we will explore the basics of shell scripting, different shell executables, permission management, useful commands, and advanced concepts crucial for infr...advanceshellscripting
Sagar Bhosalebsagar.hashnode.dev·Mar 1, 2024Advanced Linux Shell Scripting for DevOps Engineers with User ManagementWelcome to the DevOps playground! As the sun sets over our terminal windows, let’s embark on a journey into the heart of Linux shell scripting. Buckle up, fellow engineers, because we’re about to dive deep into the command-line abyss. User Management...Linux
Priyanka Gondpriyanka-devopsblogs.hashnode.dev·Feb 9, 2024Day 05 Task:1.You have to do the same using Shell Script i.e using either Loops or command with start day and end day variables using arguments - Example 1: When the script is executed as ./createDirectories.shday 1 90 then it creates 90 directories as day1 day2...#90DaysOfDevopsChallange #devopszerotohero
Supriya Surkarsupriyasurkar.hashnode.dev·Jan 31, 2024Day 5 Task: Advanced Linux Shell Scripting for DevOps Engineers with User managementThis is#90DaysofDevopschallenge under the guidance ofShubham Londhe. Day 5 TASK Introduction👍: Welcome to Day 5 of our DevOps journey! Today, we're going to dive into some advanced Linux shell scripting techniques, specifically focusing on user man...1 like·60 readsshell scripting
Sunil Prasadsunilprasad.hashnode.dev·Jan 8, 20245. Advanced Linux Shell Scripting for DevOps Engineers with User managementTask 1: Creating Dynamic Directories Here's a bash script for the first task, creating directories with a dynamic name: #!/bin/bash if [ "$#" -ne 3 ]; then echo "Usage: $0 <directory_name> <start_number> <end_number>" exit 1 fi director...advanceshellscripting
Kavita Pantday2devops90daysofchallenge.hashnode.dev·Aug 2, 2023Advance Linux shell scripting Day5 90daysofdevopschallengeHere comes day 5 tasks today we will deep dive into advance Linux shell scripting. Table of content: Tasks1. 1) You have to do the same using Shell Script i.e using either Loops or command with start day and end day variables using arguments - So Wri...advanceshellscripting
Moiz Asifmoiz-journeytodevops.hashnode.dev·Aug 1, 2023Day 5: Advanced Linux Shell Scripting for DevOps Engineers with User managementIn this blog, we will go deep dive into Bash Scripting Creating Dynamic Directories with Bash Scripting using Loops and Arguments We will be creating a bash script createDirectories.sh that when the script is executed with three given arguments (one ...42 reads#Day5Of 90DayOfDevops #Advanced Shell Scripting
Saurabh Mathuriacocreator.hashnode.dev·Jul 19, 2023Advanced Linux shell scripting for DevOps engineersAs a DevOps engineer, the ability to write efficient and powerful shell scripts is paramount, as it allows you to automate tasks, manage systems, and streamline processes, all while promoting collaboration between development and operations teams. Ta...advanceshellscripting