Create recursive directories with one linux command

by Sanju 2012-07-03 15:18:25

Create recursive directories with one linux command

mkdir ~/test

mkdir ~/test/test1

mkdir ~/test/test1/test2

mkdir ~/test/test1/test2/test3

You create all of these subdirectories with a single command:

mkdir -p ~/test/test1/test2/test3

971
like
0
dislike
0
mail
flag

You must LOGIN to add comments