Skip to content

Instantly share code, notes, and snippets.

@fahadsiddiqui
Last active March 10, 2020 08:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fahadsiddiqui/ba4fae87bddc43a0c5484d8256f2b112 to your computer and use it in GitHub Desktop.
Save fahadsiddiqui/ba4fae87bddc43a0c5484d8256f2b112 to your computer and use it in GitHub Desktop.
Create multiple directories in one `mkdir` command.
# 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