Advanced Linux Shell Scripting for DevOps Engineers with User Management
Creating 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
...
dwarkajha.hashnode.dev3 min read