mkdir tip

Published: 12/01/2008

Brain Dump

Ok, maybe I feel stupid for not knowing this but check this out.

When you want to create multiple directories on Linux, like, say, the following:

Master:
—sub1
—sub2
—sub3

you can just do all with one command:

mkdir sub1 sub2 sub3

intead of multiple commands:

mkdir sub1
mkdir sub2
etc…

Cool 😊