Join Nostr
2026-04-24 13:38:04 UTC

CarK :python: on Nostr: #TIL In bash you can create multiple (nested) directories with a single compact line: ...

#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