Day -> 5 of #90DaysOfDevOps
Create Directories using Shell Script
Create a createDirectories.sh file using nano text editor
nano createDirectories.sh
Write the script inside the createDirectories.sh
for ((i=1; i<=90; i++ ));
do
dirname="day$i"
mkdir "$dirname"
echo "created dir...
ankittkx.hashnode.dev3 min read