Today, I had to create twenty-six directories each corresponding to an English alphabet. I wrote a simple bash script that uses for loop with mkdir to do it as shown below.
for alphabet in {a..z}; do mkdir $alphabet done
Today, I had to create twenty-six directories each corresponding to an English alphabet. I wrote a simple bash script that uses for loop with mkdir to do it as shown below.
for alphabet in {a..z}; do mkdir $alphabet done