© 2026 LinearBytes Inc.
Search posts, tags, users, and pages
Utsav Gohel
Cloud Engineer
In Question 1
folder start and end are staticto convert it dynamic
use this code
"#!/bin/bash
directoryName=$1 startNumberOfDirectory=$2 endNumberOfDirectory=$3
for num in $(seq "$2" "$3"); do mkdir $1$num echo "$1$num Directory created" done "