2026-04-24 13:38:04
#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