I have a directory whose name is 1990 and I would like to create 12 subdirectories within it (one per month) using a for loop. Also, I want each subdirectory to be named after a month (that is, January, February, March..., instead of 1, 2, 3...). I also don't know which way I should specify the name of the directory (i.e., 1990) in my function.
This is what I was thinking:
for i in 1990; do
mkdir {January..December}
done
My problems here have to do with the directory itself and with the fact that brace expansion wouldn't accept names.
Note: if there was a possibility of creating the directory 1990 within this function, that would be ok as well.