2026-04-25 07:35:51
#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
Oh, no.
My favorite scripting language is the
#Epsteinfiles #bash
https://www.justice.gov…