Is there a linux command that I'm overlooking that makes it possible to do something along the lines of: (pseudo)
$ mkdir -R foo/bar/zoo/andsoforth
Or is there no alternative but to make the directories one at a time?
migrated from serverfault.com Sep 27 '12 at 3:56This question came from our site for professional system and network administrators. |
|
mkdir -p foo/{bar,baz}/zoo/andsoforth
. Very useful! – Aaron Copley Aug 7 '12 at 20:43