Home
grep Maker
zip Maker
rm Maker
ssh Generator
cat Generator
mkdir
Vim
Scp
Linux Tools
Linux ls Tool
Top Generator
Tail Generator
Unzip Generator
CD Maker
uname Maker
Tree Generator
Touch
Tar Generator
PS Generator
Nano
MV Maker
Wget Generator
Linux cp Maker
Linux
mkdir
Command Maker Tool
Directory Name
Specify the name of the directory to create.
Options
Create parent directories (
-p
)
Create parent directories if they don't exist.
Verbose output (
-v
)
Display a message for each created directory.
Set SELinux context (
-Z
)
Set SELinux security context for the directory.
Permissions (
-m
)
700 (rwx------) - Owner has full permissions; no permissions for group or others.
755 (rwxr-xr-x) - Owner has full permissions; group and others can read/execute.
777 (rwxrwxrwx) - Everyone has full permissions (not secure).
644 (rw-r--r--) - Owner can read/write; group and others can only read.
600 (rw-------) - Owner can read/write; no permissions for group or others.
555 (r-xr-xr-x) - Everyone can read/execute; no write permissions.
444 (r--r--r--) - Everyone can read; no write or execute permissions.
711 (rwx--x--x) - Owner has full permissions; group and others can only execute.
Custom - Enter your own permission code
Custom Permissions
Enter a custom permission code (e.g., 750).
Generated Command
Copy Command
How to Use This Tool
This tool helps you generate
mkdir
commands easily. Follow these steps:
Enter the directory name in the "Directory Name" field.
Select the desired options using the checkboxes.
Choose a permission code using the radio buttons or enter a custom one.
Copy the generated command and use it in your terminal.
A few examples of mkdir command:
Create a directory:
mkdir mydir
Multiple Directories in one go:
mkdir mydir1 mydir3 mydir3
Directory Inside Another:
mkdir -p parent/child
Mutiple Directories Inside Another:
mkdir -p Parent_dir/{dir1,dir2,dir3}
Create a directory with specified permission:
mkdir -m 755 my_dir