1
2
3
4
5
6 using System;
7
8 void PrintHelp()
9 {
10 Console.Out() << "cat [options] <file>..." << endl() << endl();
11 Console.Out() << "Concatenate files and print on the standard output." << endl() << endl();
12 Console.Out() << "Options:" << endl() << endl();
13 Console.Out() << "--help | -h" << endl();
14 Console.Out() << " Print help and exit." << endl() << endl();
15 }