Day 5 DevOps challenge
✔️Shell script to create multiple directories at once :
#!/bin/bash
echo "creating multiple directories at once "
for (( i = $2; i < $3; i++ ))
do
mkdir "$1$i"
done
here the script working as :
At first, it prints "creating multiple directories a...
prabirmahatha.hashnode.dev4 min read