1 // =================================
 2 // Copyright (c) 2022 Seppo Laakko
 3 // Distributed under the MIT license
 4 // =================================
 5 
 6 using System;
 7 
 8 void PrintHelp()
 9 {
10     Console.Out() << "Usage: rm [options] <file>..." << endl() << endl();
11     Console.Out() << "Remove files and 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() << "--recursive | -r" << endl();
18     Console.Out() << "  Remove directories recursively." << endl() << endl();
19 }