{
"name": "mkdir",
"description": "Make directories",
"options": [
{
"names": [
"-m",
"--mode"
],
"description": "Set file mode (as in chmod), not a=rwx - umask",
"takes_arg": true,
"arg": {
"name": "mode"
}
},
{
"names": [
"-p",
"--parents"
],
"description": "No error if existing, make parent directories as needed"
},
{
"names": [
"-v",
"--verbose"
],
"description": "Print a message for each created directory"
},
{
"names": [
"-Z",
"--context"
],
"description": "Set the SELinux security context of each created directory",
"takes_arg": true,
"arg": {
"name": "context"
}
},
{
"names": [
"--help"
],
"description": "Display this help and exit"
},
{
"names": [
"--version"
],
"description": "Output version information and exit"
}
],
"args": [
{
"name": "directory name",
"template": "folders"
}
]
}