A simple Bash question to check your DevOps scripting skills

Assume that you need to create some directories as follows:

└── api
    ├── fs
    ├── os
    └── process

Write one Bash command to do this. The answer is in the first comment of this post :slight_smile:

2 Likes
mkdir -p api/{os,fs,process}
2 Likes

Thanks and happy hacking !

2 Likes