Skip to content

Instantly share code, notes, and snippets.

@dewomser
Created May 1, 2026 02:33
Show Gist options
  • Select an option

  • Save dewomser/a98c178c627adcf610e77c32bdc4d825 to your computer and use it in GitHub Desktop.

Select an option

Save dewomser/a98c178c627adcf610e77c32bdc4d825 to your computer and use it in GitHub Desktop.
Verschachtelte Verzeichnisse anlegen mit mkdir

mkdir und modernes Bash

mk`dir -p dancer/{Lolo,Lili/{girl,99},Lulu/{friend,98}}

ergibt (tree)

.
└── dancer
    ├── Lili
    │   ├── 99
    │   └── girl
    ├── Lolo
    └── Lulu
        ├── 98
        └── friend

9 directories, 0 files``` 
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment