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
Line 8: Line 8:
  
 
= See also =
 
= See also =
* [[http://man-wiki.net/index.php/1:mkdir mkdir's man page]]
+
* [http://man-wiki.net/index.php/1:mkdir mkdir's man page]

Revision as of 13:05, 6 September 2011

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

See also