mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-14 02:26:59 -07:00
differentiate commands and sub-menus in help
This commit is contained in:
parent
502def6d63
commit
37239a7c4b
3 changed files with 10 additions and 10 deletions
|
@ -21,11 +21,11 @@ static int CmdQuit(const char *Cmd);
|
|||
static command_t CommandTable[] =
|
||||
{
|
||||
{"help", CmdHelp, 1, "This help. Use '<command> help' for details of the following commands:\n"},
|
||||
{"data", CmdData, 1, "Plot window / data buffer manipulation"},
|
||||
{"data", CmdData, 1, "{ Plot window / data buffer manipulation... }"},
|
||||
{"exit", CmdQuit, 1, "Exit program"},
|
||||
{"hf", CmdHF, 1, "HF commands"},
|
||||
{"hw", CmdHW, 1, "Hardware commands"},
|
||||
{"lf", CmdLF, 1, "LF commands"},
|
||||
{"hf", CmdHF, 1, "{ HF commands... }"},
|
||||
{"hw", CmdHW, 1, "{ Hardware commands... }"},
|
||||
{"lf", CmdLF, 1, "{ LF commands... }"},
|
||||
{"quit", CmdQuit, 1, "Quit program"},
|
||||
{NULL, NULL, 0, NULL}
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue