I have a shell script which makes directories week_01 to week_09 using a for loop and one another directory called week_10. I want to translate this shell script into Windows commands using two lines of code?
Shell Script:
#!/bin/bash
for (( Y=1;Y<=9;Y++))
do
mkdir week_0$Y
done
mkdir week_10