© 2026 Hashnode
If you noticed that there are a total 90 sub-directories in the directory '2023' of this repository. What did you think, how did I create 90 directories? Manually one by one or using a script, or a command? All 90 directories within seconds using a s...

Introduction Welcome to Day 5 of the #90DaysOfDevOps challenge! Today, we will cover several topics related to Linux system administration and shell scripting. We'll start with creating dynamic directories using the command line, followed by an autom...

Task 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...

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 is the end number of directories ) it creates specified number of director...

In 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 ...

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 Write a bash script createDirectories.sh that when the script is executed with three given arguments (one is direc...
