Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

crea

crea (from Latin crea — to create/make) creates directories. It is the core Vesper Linux replacement for GNU mkdir.

Usage

crea [-p] DIR...

Flags

  • -p — create parent directories as needed; does not fail if intermediate paths do not exist.

Examples

Create a single directory:

crea my_folder

Create nested directories along with missing parents:

crea -p path/to/nested/folder

Create multiple directories at once:

crea dir1 dir2 dir3