I want to make the following directories using shell script,
00, 01, 02, ..., 50 I have tried the script as follows:
for ((1;i<=${1};i=i+1)) do mkdir ${i} done But I get
0, 1, 2, ..., 50 How to modify the script? thanks.
I want to make the following directories using shell script,
00, 01, 02, ..., 50 I have tried the script as follows:
for ((1;i<=${1};i=i+1)) do mkdir ${i} done But I get
0, 1, 2, ..., 50 How to modify the script? thanks.