mkdir for filesystem

Make directories, creates intermediary directories as required.

Signature

> mkdir ...rest --verbose

Parameters

  • ...rest: the name(s) of the path(s) to create
  • --verbose (-v): print created path(s).

Input/output types:

inputoutput
nothingnothing

Examples

Make a directory named foo

> mkdir foo

Make multiple directories and show the paths created

> mkdir -v foo/bar foo2