I want to create ten folders named foo1java, foo2c, foo3python, etc.
I tried this but it creates too many directories:
mkdir foo{1..3}{java,c,python}
foo1c/ foo1python/ foo2java/ foo3c/ foo3python/
foo1java/ foo2c/ foo2python/ foo3java/
I just want map the numbers to the languages: 1 to java, 2 to c, 3 to python, etc.
How would I go about doing this?