Last active
March 10, 2020 08:08
-
-
Save fahadsiddiqui/ba4fae87bddc43a0c5484d8256f2b112 to your computer and use it in GitHub Desktop.
Create multiple directories in one `mkdir` command.
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
# create in from a list | |
mkdir -p temp/{api,logs,whatnot} | |
# create all from A to Z | |
mkdir -p temp/{A..Z} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment