Difference between revisions of "Mkdir"
From Linuxintro
imported>ThorstenStaerk (Created page with "mkdir is a command to create a directory. As an example, open a console and enter mkdir -p /tmp/this/is/a/test Then verify the directory /tmp/this/is/a/test ex...") |
imported>ThorstenStaerk m |
||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
− | [[mkdir]] is a [[command]] to create a | + | [[mkdir]] is a [[command]] to create a directory. |
As an example, [[open a console]] and enter | As an example, [[open a console]] and enter | ||
Line 8: | Line 8: | ||
= See also = | = See also = | ||
− | * | + | * [http://linuxmanpages.com/man1/mkdir.1.php mkdir's man page] |
Latest revision as of 09:39, 20 April 2014
mkdir is a command to create a directory.
As an example, open a console and enter
mkdir -p /tmp/this/is/a/test
Then verify the directory /tmp/this/is/a/test exists using the command
ls /tmp/this/is/a