-
-
Save ianthekirkland/3912595 to your computer and use it in GitHub Desktop.
brace expansion with mkdir
This file contains 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 {test1,test2}/{test3,test4} | |
gives me test1/test3, test1/test4, test2/test3 and test2/test4 | |
mkdir -p {test1,test2}/{test3,test4/{test5,test6}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment