Create multiple subdirectories

The -p flag creates nested directories if they don't already exist.

In the example below, use a combination of the flag -p and curly braces {} to create a directory folder called master, with sub-directories data, pre_processing, model, output:

$ mkdir -p master/{data,pre_processing,model,output}
$ ls -a master . .. data model output pre_processing