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
Discover more from Shekhar Gulati
Subscribe to get the latest posts sent to your email.