2020-08-28 04:03:12 -07:00
|
|
|
/**
|
|
|
|
|
* @file help.cpp
|
2022-01-18 22:38:56 +03:30
|
|
|
* @author Sina Karvandi (sina@hyperdbg.org)
|
2020-08-28 04:03:12 -07:00
|
|
|
* @brief .help command
|
|
|
|
|
* @details
|
|
|
|
|
* @version 0.1
|
|
|
|
|
* @date 2020-08-10
|
|
|
|
|
*
|
|
|
|
|
* @copyright This project is released under the GNU Public License v3.
|
|
|
|
|
*
|
|
|
|
|
*/
|
2022-05-04 16:38:21 -07:00
|
|
|
#include "pch.h"
|
2020-08-28 04:03:12 -07:00
|
|
|
|
|
|
|
|
/**
|
2023-07-13 16:05:42 +09:00
|
|
|
* @brief help of the help command :)
|
2023-01-18 20:23:40 +09:00
|
|
|
*
|
2024-03-17 19:00:14 +09:00
|
|
|
* @param SplitCommand
|
2021-02-10 15:19:01 -08:00
|
|
|
* @param Command
|
2023-01-18 20:23:40 +09:00
|
|
|
* @return VOID
|
2020-08-28 04:03:12 -07:00
|
|
|
*/
|
2021-03-22 18:19:39 +04:30
|
|
|
VOID
|
|
|
|
|
CommandHelpHelp()
|
|
|
|
|
{
|
2022-04-10 22:24:56 +04:30
|
|
|
ShowMessages(".help : shows help and example(s) of a specific command.\n\n");
|
2022-04-17 23:05:24 +04:30
|
|
|
|
2022-02-09 02:16:58 +03:30
|
|
|
ShowMessages("syntax : \t.help [Command (string)]\n");
|
2022-04-17 23:05:24 +04:30
|
|
|
|
|
|
|
|
ShowMessages("\n");
|
2021-03-22 18:19:39 +04:30
|
|
|
ShowMessages("\t\te.g : .help !monitor\n");
|
2020-08-28 04:03:12 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
|
// Implementation of .help command is on interpreter.cpp
|
|
|
|
|
//
|