I want to create multiple folders using the user input. As an example, if the user has written java,python,react the result that i'm looking for is having then the folders java, python and react respectively. But what happens, is that a folder with the name {java,python,react} is created. The comma is not recognized anymore.
## The code
read -p "External projects: " EXTERNAL_PROJECTS
mkdir -p {$EXTERNAL_PROJECTS}