crash.commands.help module

SUMMARY

Display help for crash commands

help [command]

DESCRIPTION

This command displays help text for crash commands. When used alone, it provides a list of commands. When an argument is specified, the help text for that command will be printed.

class crash.commands.help.HelpCommand[source]

Bases: crash.commands.Command

this command

execute(args: argparse.Namespace) → None[source]

This method implements the command functionality.

Each command has a derived class associated with it that, minimally, implements this method.

Parameters:args – The arguments to this command already parsed by the commmand’s parser.