Skip to content

Instantly share code, notes, and snippets.

@ryanneufeld
Created October 16, 2012 19:17
Show Gist options
  • Save ryanneufeld/3901357 to your computer and use it in GitHub Desktop.
Save ryanneufeld/3901357 to your computer and use it in GitHub Desktop.
mkdir -p examples.
/tmp# mkdir -p one/{two,three/five}/{four,six/{seven,eight}}
/tmp# tree one/
one/
├── three
│   └── five
│   ├── four
│   └── six
│   ├── eight
│   └── seven
└── two
├── four
└── six
├── eight
└── seven
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment