* To make the `a/b/c’ directory — a subdirectory of the `b’ directory, which in turn is a subdirectory of the `a’ directory in the current directory, type:
$ mkdir -p a/b/c [RET]
This makes a `c1′ subdirectory in the directory called `b’, which in turn is in a directory called `a’ in the current directory; if the `b’ or the `c’ directories do not already exist, they are made as well (if you know that `a’ and `b’ both exist, the above command works fine without the `-p’ option).
0 comments:
Post a Comment