Skip to content

Instantly share code, notes, and snippets.

@spyesx
Last active December 12, 2020 06:15
Show Gist options
  • Save spyesx/863aeca0136b50a6ce876a54eecfd2b4 to your computer and use it in GitHub Desktop.
Save spyesx/863aeca0136b50a6ce876a54eecfd2b4 to your computer and use it in GitHub Desktop.
Create a folder structure
# A
# ├── 1
# ├── 2
# └── B
# ├── 1
# └── 2
# https://explainshell.com/explain?cmd=mkdir+-p+.%2FA%2F%7B1%2C2%2CB%2F%7B1%2C2%7D%7D
mkdir -p ./A/{1,2,B/{1,2}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment