5 examples for mkdir

{{ score }}
  # Creates the 'bar' directory, as well as 'foo' and 'baz' if they don't already exist
mkdir -p '~/foo/baz/bar'
        
{{ score }}
  # create a directory in the current directory called penguin
mkdir penguin
        
{{ score }}
  rsync -a ./from ./to --include \*/ --exclude \*

# your_comment_here
Copy directory structure without files
        
{{ score }}
  # Create a directory and set permissions in octal notation
mkdir -m 775 test
        
{{ score }}
  # Create a set of folders "My Folder 01, My Folder 02, ... 20"
mkdir My\ Folder\ {01.20}