Linux Shell Scripting Part 2
Loops in Shell Script
Let's create directories day1 to day90
#!/bin/bash
read -p "directory name: " dirName
read -p "start number: " startNum
read -p "end number: " endNum
for (( i=$startNum ; i<=$endNum ; i++ ))
do
...
koushikmaharaj.hashnode.dev1 min read