Dhwarika Jhadwarkajha.hashnode.dev·Apr 15, 2023Advanced Linux Shell Scripting for DevOps Engineers with User ManagementCreating n number of directories using a script Two ways of creating a directory One is a normal method which is described as below #!/bin/bash for i in {1..90} do mkdir days$i; done Using Iteration #!/bin/bash create_directory=$1 ...1 like·150 readsLinuxAdd a thoughtful commentNo comments yetBe the first to start the conversation.