How to use mkdir command to make directories in Linux and UNIX? mkdir -p Example (original) (raw)

One of the most common tasks in any Linux is creating directories, and most of us spend a lot of time creating complex directory structures in UNIX and Linux. I am sure you know about the mkdir command, we have been using this command in almost every operating system like DOS, Windows, Linux, OS/2, Solaris, or any other *NIX operating system. It is one of the basic commands but as important as find, grep or chmod. mkdir stands for "make directory" and this command is literally used to create directories. Suppose, you need to create a directory tree-like /opt/software/java/app/config, how are you going to create these directories? One by one right? Well, yes you can use mkdir and command to create these directories one by one as shown in below example :

$ cd /opt $ mkdir software

$ cd software $ mkdir java

$ cd java $ mkdir app

$ cd app $ pwd /opt/software/java/app/config

This would take almost 8 commands to create above directory structure, unfortunately, you just can not type mkdir /opt/software/java/app/config, because parent directories does not exists.

It will simply fail, by the way there is a trick here, you can use mkdir -p command option to create intermediate directories along the way e.g. if /opt exists but /opt/software doesn't you can still use mkdir -p /opt/software/java/app/config to create exact same directory structure as shown below

[# ~]$ mkdir -p software/java/app/config [# ~]$ [# ~]$ pwd /home/john [# ~]$ cd software/java/app/config/ [# ~/software/java/app/config]$

mkdir command Example in UNIX

Interestingly, mkdir is one of the simplest commands in UNIX, I guess only one which is close to the second simple is pwd. mkdir stands for "make directory" and just has two main command-line options, other than -v which stands for verbose and prints a message for each created directory.

For example, the following command will set initial permission of new directory to 777, so that everyone can access it.

mkdir -m 777 ~/test

On the other hand, our -p option will create test/coding/java directory in one shot.

mkdir -p ~/test/coding/java

You can create even a very complex directory structure like the UNIX file system (as shown in the following diagram) using mkdir -p command.

mkdir -p command example in UNIX

mkdir command: "Permission denied" error in UNIX

By the way, sometimes if you try to create a directory like this(mostly in the directory you don't own) :

$ mkdir dropbox

you may see the following error

mkdir: cannot create directory 'dropbox': Permission denied

As an error message is suggesting, you don't have permission to create this directory in your current working directory. You can use the ls (list) command to figure out what permission you have in your current working directory.

I am sure this simple mkdir command option will save you immense time and effort while working in UNIX. It's a great tool to create or replicate a complex directory structure or tweak them. Ever since I have learned this trick, I don't remember creating directories one by one in UNIX. So remember, mkdir -p command allow you to create an intermediate directory along the way.

Related UNIX Command Tutorials

Thanks for reading this article so far. If you like this article then please share it with your friends and colleagues. If you have any questions or feedback then please drop a note.