1
2
3
4
5
6 using System;
7
8 void PrintHelp()
9 {
10 Console.Out() << "Usage: rmdir [options] <directory>" << endl() << endl();
11 Console.Out() << "Remove a directory." << endl();
12 Console.Out() << "If the directory is not empty the program fails and prints an error message." << endl() << endl();
13 Console.Out() << "Options:" << endl() << endl();
14 Console.Out() << "--help | -h" << endl();
15 Console.Out() << " Print help and exit." << endl() << endl();
16 Console.Out() << "--verbose | -v" << endl();
17 Console.Out() << " Be verbose." << endl() << endl();
18 }