2026-05-28 21:39:51
This might come #handy for people. A while ago I asked in #bash on @… for an #incognito
This might come #handy for people. A while ago I asked in #bash on @… for an #incognito
#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