nikhil yadavnikhildevopshub.hashnode.devยทJul 7, 2024Day 5 Task: Advanced Linux Shell Scripting for DevOps Engineers with User ManagementCreate Directories Using Shell Script: Example : When executed as ./createDirectories.sh day 1 90, it creates 90 directories as day1 day2 day3 ... day90. #!/bin/bash for ((i=1; i<=90; i++ )); do dirname="day$i" mkdir "$di...#90daysofdevopsAdd a thoughtful commentNo comments yetBe the first to start the conversation.