1
2
3
4
5
6 using System;
7
8 void PrintHelp()
9 {
10 Console.Out() << "Usage: mkdir [options] <directory>..." << endl() << endl();
11 Console.Out() << "Make directories." << endl() << endl();
12 Console.Out() << "Options:" << endl() << endl();
13 Console.Out() << "--help | -h" << endl();
14 Console.Out() << " Print help and exit." << endl() << endl();
15 Console.Out() << "--verbose | -v" << endl();
16 Console.Out() << " Be verbose." << endl() << endl();
17 Console.Out() << "--parents | -p" << endl();
18 Console.Out() << " Create parents as needed, no error if existing." << endl() << endl();
19 }