Here are some common options for the mkdir command:
-p: Create parent directories as needed (if they do not exist).-v: Verbose mode; outputs a message for each created directory.-m: Set the file mode (permissions) for the new directory. For example,mkdir -m 755 newdirsets the permissions to755.--help: Display help information about themkdircommand and its options.--version: Show the version information of themkdircommand.
These options can be combined to customize the behavior of the mkdir command according to your needs.
