Mail sava mkdir p

It seems like you're trying to create a new directory using the mkdir command!

Here's a breakdown of what you've typed:

So, if you want to create a new directory, you can use the following command:

mkdir my_new_directory

This will create a new directory called my_new_directory in the current working directory.

If you want to create a directory with all the parent directories if they don't exist, you can use the following command:

mkdir -p my_new_directory

This will create the directory my_new_directory and all the parent directories if they don't exist.

Let me know if you have any further questions!