C'est beau Linux et bash 🤩
Faut que je montre cela à #MesÉlèves
#TIL In bash you can create multiple (nested) directories with a single compact line:
❯ mkdir -p a/{b,c/{x,y},d/{e,f}}
❯ tree
.
└── a
├── b
├── c
│ ├── x
│ └── y
└── d
├── e
└── f
#bash #linux #cli