Join Nostr
2026-04-30 21:12:08 UTC

Cdrik ⏚🌻 on Nostr: RE: C'est beau Linux et bash 🤩 Faut que je montre cela à #MesÉlèves ...

RE: https://social.tchncs.de/@cark/116459954767698913

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