Created
July 29, 2019 20:36
-
-
Save stefanjudis/e6a844fe927f6d3b6b982414f98023c5 to your computer and use it in GitHub Desktop.
create-dirs-recursively.sh
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mkdir -p new-dir/{foo,baz}/whatever-{1,2}/{a,b}; | |
exa --tree new-dir; | |
# new-dir | |
# ├── baz | |
# │ ├── whatever-1 | |
# │ │ ├── a | |
# │ │ └── b | |
# │ └── whatever-2 | |
# │ ├── a | |
# │ └── b | |
# └── foo | |
# ├── whatever-1 | |
# │ ├── a | |
# │ └── b | |
# └── whatever-2 | |
# ├── a | |
# └── b |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment